diff options
author | anekos | 2009-03-02 15:04:28 +0000 |
---|---|---|
committer | anekos | 2009-03-02 15:04:28 +0000 |
commit | b3a63d12f945ea36bc72370b55b1ae6858f7e395 (patch) | |
tree | a0abcdb565c481f79bc9e760a08f030a40df4198 /exopen.js | |
parent | a44b334b97fb1a4bbab606b10e6096ba2f3a5806 (diff) | |
download | vimperator-plugins-b3a63d12f945ea36bc72370b55b1ae6858f7e395.tar.bz2 |
末尾の空白の除去など
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@30710 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'exopen.js')
-rw-r--r-- | exopen.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -175,7 +175,7 @@ liberator.plugins.exOpen = (function() { }, find: function(label) { var ret = null; - global.some(function(template) template.label == label ? (ret = template) && true : false); + global.some(function(template) (template.label == label) && (ret = template)); return ret; }, open: function(arg) { |