Changeset 34871

Show
Ignore:
Timestamp:
08/13/09 20:12:25 (4 years ago)
Author:
teramako
Message:

%HTMLSEL%のタグ名を小文字化

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/vimperator-plugins/trunk/copy.js

    r29860 r34871  
    99<author mail="teramako@gmail.com" homepage="http://vimperator.g.hatena.ne.jp/teramako/">teramako</author> 
    1010<license>MPL 1.1/GPL 2.0/LGPL 2.1</license> 
    11 <version>0.7.1</version> 
     11<version>0.7.2</version> 
    1212<detail><![CDATA[ 
    1313== Command == 
     
    154154            htmlsel += serializer.serializeToString(selection.getRangeAt(i).cloneContents()); 
    155155        } 
    156         return htmlsel; 
     156        return htmlsel.replace(/<(\/)?(\w+)(\s+[\s\S]*?)?>/g, function(all, close, tag, attr){ 
     157            return "<" + close + tag.toLowerCase() + attr + ">"; 
     158        }); 
    157159    } 
    158160};