Changeset 30865 for lang/javascript

Show
Ignore:
Timestamp:
03/05/09 21:09:21 (4 years ago)
Author:
secondlife
Message:

null 文字

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/vimperator-plugins/trunk/hatena-bookmark-search.js

    r30864 r30865  
    99<author mail="hotchpotch@gmail.com" homepage="http://d.hatena.ne.jp/secondlife/">Yuichi Tateno</author> 
    1010<license>MPL 1.1/GPL 2.0/LGPL 2.1</license> 
    11 <version>1.0.0</version> 
     11<version>1.0.2</version> 
    1212<detail><![CDATA[ 
    1313>|| 
     
    5656== ChangeLog == 
    5757 
     58- 1.0.2 
     59-- ヌル文字を消す 
    5860- 1.0.1 
    5961-- ドキュメントの追加 
     
    8587 * url  
    8688 */ 
    87 HatenaBookmark.Data.prototype.__defineGetter__('title', function() this.data.split("\n")[0]); 
     89HatenaBookmark.Data.prototype.__defineGetter__('title', function() this.data.split("\n")[0].replace("\0", '')); 
    8890HatenaBookmark.Data.prototype.__defineGetter__('comment', function() this.data.split("\n")[1]); 
    8991HatenaBookmark.Data.prototype.__defineGetter__('url', function() this.data.split("\n")[2]);