diff --git a/content/commands.js b/content/commands.js index b6e1b2c..7043165 100644 --- a/content/commands.js +++ b/content/commands.js @@ -629,8 +629,13 @@ BookmarkTags.BookmarkCmds= function () function properties(bmObj) { - // see content/browser/places/controller.js - PlacesUIUtils.showItemProperties(bmObj.id, "bookmark"); + var info= + { + action: "edit", + type: "bookmark", + itemId: bmObj.id + }; + PlacesUIUtils.showBookmarkDialog(info); } // See SidebarUtils.handleTreeClick at @@ -926,8 +931,13 @@ BookmarkTags.TagCmds= function () function properties(tagId) { - // see content/browser/places/controller.js - PlacesUIUtils.showItemProperties(tagId, "folder"); + var info= + { + action: "edit", + type: "folder", + itemId: tagId + }; + PlacesUIUtils.showBookmarkDialog(info); } function getCSSFile() diff --git a/content/tagInput.xml b/content/tagInput.xml index 51e0f83..7e3d73a 100644 --- a/content/tagInput.xml +++ b/content/tagInput.xml @@ -330,21 +330,6 @@ if (!val && !textbox.value) return; textbox.value= val; - - // optimization - if (!val) return; - - // Hack: The textbox won't automatically scroll to the caret if the - // caret's past the visible area. Moving around in the textbox will - // though, so generate a fake keypress. - // FOR THIS TO WORK, TAG INPUT MUST HAVE FOCUS BEFOREHAND. - e= document.createEvent("KeyEvents"); - //e.initKeyEvent("keypress", true, false, null, - e.initKeyEvent("keypress", false, false, null, - false, false, false, false, - Components.interfaces.nsIDOMKeyEvent.DOM_VK_RIGHT, 0); - e.bogus= true; - textbox.inputField.dispatchEvent(e); } // Checks the autocomplete menuitem as appropriate, if there's an diff --git a/install.rdf b/install.rdf index 8959000..5028148 100644 --- a/install.rdf +++ b/install.rdf @@ -4,7 +4,7 @@ tagsieve@grue.in TagSieve - 4.3.0 + 4.3.1 Browse your bookmarks with sets of tags hark http://www.grue.in/tagsieve @@ -15,7 +15,7 @@ {ec8030f7-c20a-464f-9b0e-13a3a9e97384} 4.0 - 9.0a1 + 14.0a1 diff --git a/locale/de-DE/help.html b/locale/de-DE/help.html index f87013f..6f88a48 100644 --- a/locale/de-DE/help.html +++ b/locale/de-DE/help.html @@ -92,7 +92,7 @@

TagSieve Help

Browse your bookmarks with sets of tags

-

Version 4.3.0

+

Version 4.3.1

diff --git a/locale/en-US/help.html b/locale/en-US/help.html index f87013f..6f88a48 100644 --- a/locale/en-US/help.html +++ b/locale/en-US/help.html @@ -92,7 +92,7 @@

TagSieve Help

Browse your bookmarks with sets of tags

-

Version 4.3.0

+

Version 4.3.1