aboutsummaryrefslogtreecommitdiffstats
path: root/plugin_loader.js
diff options
context:
space:
mode:
authoranekos2008-10-07 17:36:29 +0000
committeranekos2008-10-07 17:36:29 +0000
commitce9337575b6e849c5bbcb5cc368d5d86f9812427 (patch)
tree9d9ab3af8e01b7a7ed1df31f4b1ce104141a3170 /plugin_loader.js
parent301ff2ff87e337d3f3d71db7795dbc33c0dcf1f3 (diff)
downloadvimperator-plugins-ce9337575b6e849c5bbcb5cc368d5d86f9812427.tar.bz2
* trivial fixes.
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@20938 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'plugin_loader.js')
-rw-r--r--plugin_loader.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin_loader.js b/plugin_loader.js
index af50912..253db22 100644
--- a/plugin_loader.js
+++ b/plugin_loader.js
@@ -25,7 +25,7 @@ function toArray (obj) {
let roots = toArray(globalVariables.plugin_loader_roots);
let plugins = toArray(globalVariables.plugin_loader_plugins);
-let filter = new RegExp("[\\\\/](" + plugins.join('|') + ")\.(js|vimp)$");
+let filter = new RegExp('[\\\\/](' + plugins.join('|') + ')\\.(js|vimp)$');
log('plugin_loader: loading');