[geeklog-cvs] geeklog: Fixed delete option for dynamically added config option...

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sat Nov 28 14:29:04 EST 2009


changeset 7489:e1df65abb027
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/e1df65abb027
user: Dirk Haun <dirk at haun-online.de>
date: Sat Nov 28 20:28:54 2009 +0100
description:
Fixed delete option for dynamically added config options: Back in 1.5.1, we renamed the JavaScript remove() function to gl_cfg_remove() but forgot to update the dynamically created function calls (cf. bug #0000681)

diffstat:

 public_html/docs/history                |  8 ++++++++
 public_html/javascript/configmanager.js |  4 ++--
 2 files changed, 10 insertions(+), 2 deletions(-)

diffs (38 lines):

diff -r 05cb4b1bfb9a -r e1df65abb027 public_html/docs/history
--- a/public_html/docs/history	Fri Nov 27 22:57:47 2009 +0100
+++ b/public_html/docs/history	Sat Nov 28 20:28:54 2009 +0100
@@ -1,5 +1,13 @@
 Geeklog History/Changes:
 
+??? ??, 20?? (1.6.2)
+------------
+
+- Fixed delete option for dynamically added config options: Back in 1.5.1, we
+  renamed the JavaScript remove() function to gl_cfg_remove() but forgot to
+  update the dynamically created function calls (cf. bug #0000681) [Dirk]
+
+
 Nov 22, 2009 (1.6.1)
 ------------
 
diff -r 05cb4b1bfb9a -r e1df65abb027 public_html/javascript/configmanager.js
--- a/public_html/javascript/configmanager.js	Fri Nov 27 22:57:47 2009 +0100
+++ b/public_html/javascript/configmanager.js	Sat Nov 28 20:28:54 2009 +0100
@@ -62,7 +62,7 @@
   deleteButton.value = "x";
   deleteButton.onclick =
     function(){
-        remove(this)
+        gl_cfg_remove(this)
     };
   paramCell.appendChild(deleteButton);
  }
@@ -103,7 +103,7 @@
    deleteButton.type = "button";
    deleteButton.value = "x";
    deleteButton.onclick = function(){
-    remove(this);
+    gl_cfg_remove(this);
     };
    arrayCell.appendChild(deleteButton);
   }



More information about the geeklog-cvs mailing list