diff options
author | wlt | 2011-01-01 09:07:18 -0800 |
---|---|---|
committer | wlt | 2011-01-01 09:07:18 -0800 |
commit | 3062d112f675cfe44524bf6a9038b029058b9d5f (patch) | |
tree | 514fa105ba949b100fdfddb194c6f91bf7ea3ab1 /auto_reload.js | |
parent | 00cb16b2e1852d54626495ddd53a625b2286e144 (diff) | |
download | vimperator-plugins-3062d112f675cfe44524bf6a9038b029058b9d5f.tar.bz2 |
fixed: storage用のプロパティ名をちゃんとuuid使うようにした
Diffstat (limited to 'auto_reload.js')
-rw-r--r-- | auto_reload.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auto_reload.js b/auto_reload.js index af02616..64dcf69 100644 --- a/auto_reload.js +++ b/auto_reload.js @@ -63,7 +63,7 @@ let PLUGIN_INFO = 'Auto reload current tab', function (args) { let tab = gBrowser.mCurrentTab; - let storage = tab[this.uuid] || (tab[this.uuid] = {}); + let storage = tab[uuid] || (tab[uuid] = {}); let reload; let func = reload = function () tabs.reload(tab); let time = parseInt(parseFloat(args[0] || 1) * 1000); |