]> gitweb.fluxo.info Git - semanticscuttle.git/commitdiff
Interface fix: re-add javascript button to add tags
authormensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Mon, 12 Jan 2009 12:45:24 +0000 (12:45 +0000)
committermensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f>
Mon, 12 Jan 2009 12:45:24 +0000 (12:45 +0000)
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@228 b3834d28-1941-0410-a4f8-b48e95affb8f

templates/dynamictags.inc.php
templates/editbookmark.tpl.php

index 07e3ee97b2314ae8b0110e12c4b92f06ed608a67..c6b0d162fce5620361d4ac83b702bc49ffc1d131 100644 (file)
@@ -80,9 +80,9 @@ Array.prototype.remove = function (ele) {
 };
 
 function addonload(addition) {
-    var existing = window.onload;
+    //var existing = window.onload;
     window.onload = function () {
-        existing();
+        //existing();
         addition();
     }
 }
index aa875ce92dc6021b5521a9303cd59e76b44c8a38..264a3c1efd8c4f28c11e1a5a66c00f5ceebdcdda 100644 (file)
@@ -48,7 +48,7 @@ $this->includeTemplate("dojo.inc");
     <th align="left"><?php echo T_('Tags'); ?></th>
     <td class="scuttletheme">
     <span dojoType="dojo.data.ItemFileReadStore" jsId="memberTagStore" url="<?php echo ROOT?>ajax/gettags.php"></span>
-    <input type="text" dojoType="js.MultiComboBox" id="tags2" name="tags" size="75" value="<?php echo filter(implode(', ', $row['tags']), 'xml'); ?>" store="memberTagStore" delimiter="," searchAttr="tag" hasDownArrow="false"/></td>
+    <input type="text" dojoType="js.MultiComboBox" id="tags" name="tags" size="75" value="<?php echo filter(implode(', ', $row['tags']), 'xml'); ?>" store="memberTagStore" delimiter="," searchAttr="tag" hasDownArrow="false"/></td>
     <td>&larr; <?php echo T_('Comma-separated'); ?></td>
 </tr>
 <tr>
@@ -103,7 +103,7 @@ $this->includeTemplate("dojo.inc");
 
 <?php
 // Dynamic tag selection
-//$this->includeTemplate('dynamictags.inc');
+$this->includeTemplate('dynamictags.inc');
 
 // Bookmarklets and import links
 if (empty($_REQUEST['popup']) && (!isset($showdelete) || !$showdelete)) {