diff options
author | anekos | 2010-07-31 16:36:28 +0000 |
---|---|---|
committer | anekos | 2010-07-31 16:36:28 +0000 |
commit | 6939007aa14678a984f5f92df087a0096bf94de1 (patch) | |
tree | 637801563cf35ff7b7300056205877b216ef63e1 | |
parent | 2b3369c42933e0fe8a7e4badaeaeb25e0a8f985d (diff) | |
download | vimperator-plugins-6939007aa14678a984f5f92df087a0096bf94de1.tar.bz2 |
履歴保存バグ修正
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@38106 d0d07461-0603-4401-acd4-de1884942a52
-rwxr-xr-x | twittperator.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/twittperator.js b/twittperator.js index aa2eb6b..44a97ad 100755 --- a/twittperator.js +++ b/twittperator.js @@ -1527,9 +1527,9 @@ function loadPlugins() { // {{{ let history; if (debugVars.history) { history = debugVars.history; - liberator.registerObserver('exit', function () accessor.set("history", history)); } else { history = debugVars.history = accessor.get("history", []); + liberator.registerObserver('exit', function () accessor.set("history", history)); } let tw = new TwitterOauth(accessor); |