Changeset 10328

Show
Ignore:
Timestamp:
04/24/08 19:32:19 (5 years ago)
Author:
mattn
Message:
  • 'v' 押下時に最初のパラグラフにもフォーカスしていない場合エラーが出ていたのを修正
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/userscripts/ldrize.user.js

    r9034 r10328  
    760760  getCurrentLink: function(){ 
    761761          var xpath = this.getSiteinfo()['link']; 
    762           return xpath ? [this.getParagraphes().current.paragraph.XPath(xpath)] : false; 
     762          var paragraphes = this.getParagraphes(); 
     763          var paragraph = paragraphes.current.paragraph || paragraphes.getNth(0).paragraph; 
     764          return xpath ? [paragraph.XPath(xpath)] : false; 
    763765  }, 
    764766