diff options
author | anekos | 2008-12-31 15:18:10 +0000 |
---|---|---|
committer | anekos | 2008-12-31 15:18:10 +0000 |
commit | c8680806d523e15d51ae02e9c96a990c5c0bf999 (patch) | |
tree | e206fdb58f33d4bbdd41ab0cdae0cf82615e24d8 /alert.js | |
parent | 55b0fb38216ae7b7fa21f4ca860250bc4b6f7c5f (diff) | |
download | vimperator-plugins-c8680806d523e15d51ae02e9c96a990c5c0bf999.tar.bz2 |
さっそくバグ退治!
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@27697 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'alert.js')
-rw-r--r-- | alert.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -444,9 +444,9 @@ let PLUGIN_INFO = else message += ' ' + v; }); - if (message) + if (!message) message = defaults.message; - if (time) + if (!time) time = defaults.time; if (!methods.length) methods = defaults.methods; |