Show
Ignore:
Timestamp:
08/06/08 21:41:25 (4 months ago)
Author:
anekos
Message:

なぜか escapeHTML していたのを修正。
「'\'quot\」などを含むブックマークレットがエラーになるのを修正。

Files:
1 modified

Legend:

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

    r9230 r17176  
    2828    title = liberator.util.escapeHTML(title); 
    2929 
    30     url = liberator.util.escapeHTML(url); 
    31     var command = new Function("", 'liberator.open("' + url + '");'); 
     30    var command = function () { liberator.open(url); }; 
    3231    liberator.commands.addUserCommand( 
    3332      [title],