diff options
author | anekos | 2009-08-19 13:08:43 +0000 |
---|---|---|
committer | anekos | 2009-08-19 13:08:43 +0000 |
commit | 9d80ed4b5dc44cedaf947d308ed1b5c01e1554fb (patch) | |
tree | 23a98878eef2d9f4678c2698073f904de8335236 /copy.js | |
parent | 62d0f8ce9e904fc70e12afeade1c5cb53eb29904 (diff) | |
download | vimperator-plugins-9d80ed4b5dc44cedaf947d308ed1b5c01e1554fb.tar.bz2 |
fix a typo
git-svn-id: http://svn.coderepos.org/share/lang/javascript/vimperator-plugins/trunk@34917 d0d07461-0603-4401-acd4-de1884942a52
Diffstat (limited to 'copy.js')
-rw-r--r-- | copy.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -153,7 +153,7 @@ const REPLACE_TABLE = { for (var i=0, c=selection.rangeCount; i<c; i++){ htmlsel += serializer.serializeToString(selection.getRangeAt(i).cloneContents()); } - return htmlse.replace(/<(\/)?(\w+)([\s\S]*?)>/g function(all, close, tag, attr){ + return htmlse.replace(/<(\/)?(\w+)([\s\S]*?)>/g, function(all, close, tag, attr){ return "<" + close + tag.toLowerCase() + attr + ">"; }); }, |