diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-05-02 14:09:55 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-05-02 14:09:55 +0200 |
commit | 39902d8998da806c833f6cc67465a869fc40f116 (patch) | |
tree | 7ea85394285df261d87689fb0e71b32c102b34cf /application/palemoon/components | |
parent | 815cb2f40490907a43cf394d2aabb960e7ec6df1 (diff) | |
download | UXP-39902d8998da806c833f6cc67465a869fc40f116.tar UXP-39902d8998da806c833f6cc67465a869fc40f116.tar.gz UXP-39902d8998da806c833f6cc67465a869fc40f116.tar.lz UXP-39902d8998da806c833f6cc67465a869fc40f116.tar.xz UXP-39902d8998da806c833f6cc67465a869fc40f116.zip |
[PALEMOON] [frontend vs backend] Places - use "let" instead of "var" for the entire function "onKeywordFieldBlur"
Issue #121
Diffstat (limited to 'application/palemoon/components')
-rw-r--r-- | application/palemoon/components/places/content/editBookmarkOverlay.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/palemoon/components/places/content/editBookmarkOverlay.js b/application/palemoon/components/places/content/editBookmarkOverlay.js index 1b9765bb4..69d7d32eb 100644 --- a/application/palemoon/components/places/content/editBookmarkOverlay.js +++ b/application/palemoon/components/places/content/editBookmarkOverlay.js @@ -613,7 +613,7 @@ var gEditItemOverlay = { let oldKeyword = this._keyword; let keyword = this._keyword = this._element("keywordField").value; if (keyword != oldKeyword) { - var txn = new PlacesEditBookmarkKeywordTransaction(this._itemId, + let txn = new PlacesEditBookmarkKeywordTransaction(this._itemId, keyword, null, oldKeyword); |