diff options
author | anekos | 2010-03-31 11:44:21 +0000 |
---|---|---|
committer | anekos | 2010-03-31 11:44:21 +0000 |
commit | 1f7f6fa5465790a954de061e551c835a644a52ac (patch) | |
tree | e8eb08b33565e2ab8a7651d598bc500f6a6b448b | |
parent | 6121c0857232e1b9ede232102d3264c987338ec9 (diff) | |
download | vimperator-plugins-1f7f6fa5465790a954de061e551c835a644a52ac.tar.bz2 |
無意味は引数削除
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@37132 d0d07461-0603-4401-acd4-de1884942a52
-rw-r--r-- | stella.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -385,7 +385,7 @@ Thanks: if (m = /^(([-+]?)\d+):(\d+)$/(code)) return parseInt(m[1], 10) * 60 + (m[2] == '-' ? -1 : 1) * parseInt(m[3], 10); if (m = /^([-+]?\d+\.\d+)$/(code)) - return Math.round(parseFloat(m[1], 10) * 60); + return Math.round(parseFloat(m[1]) * 60); return parseInt(code, 10); }, |