comparison xul/content/dialog_annotate.js @ 209:28e861dc3467

Enhanced the robustness of the annotation tab.
author slarti
date Thu, 25 Mar 2004 17:45:31 +0100
parents 49cb8a445126
children
comparison
equal deleted inserted replaced
208:cdc149c1a1a3 209:28e861dc3467
14 You should have received a copy of the GNU General Public License 14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software 15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA 16 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
17 17
18 Author: Christian Luginbuehl, 01.05.2003 , Version Alcatraz 0.4 18 Author: Christian Luginbuehl, 01.05.2003 , Version Alcatraz 0.4
19 Author: Beat Halter, 18.03.2004, Version Alcatraz ...
19 */ 20 */
20 21
21 function accept() { 22 function accept() {
22
23 var text = document.getElementById('annotation_value').value; 23 var text = document.getElementById('annotation_value').value;
24 24 addTextAnnotation(text);
25 opener.content.annotation(text); 25 //opener.content.annotation(text);
26
27 return true; 26 return true;
28 27
29 } 28 }
30 29
31 30