Show
Ignore:
Timestamp:
08/09/10 02:06:19 (3 years ago)
Author:
drry
Message:
  • やっぱ。
Files:
1 modified

Legend:

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

    r38227 r38228  
    13151315  } // }}} 
    13161316  function showTL(s) { // {{{ 
    1317     function userURL(name) 
    1318       ("http" + (setting.showTLWithHTTPURL ? "" : "s") + "://twitter.com/" + name); 
     1317    function userURL(screen_name) 
     1318      (setting.showTLURLScheme + "://twitter.com/" + screen_name); 
    13191319 
    13201320    let html = <style type="text/css"><![CDATA[ 
     
    17791779      statusValidDuration: parseInt(gv.twitperator_status_valid_duration || 90), 
    17801780      historyLimit: let (v = gv.twittperator_history_limit) (v === 0 ? 0 : (v || 1000)), 
    1781       showTLWithHTTPURL: gv.twittperator_show_tl_with_http_url, 
     1781      showTLURLScheme: let (v = gv.twittperator_show_tl_with_https_url) ("http" + (v === false ? "" : "s")), 
    17821782    }); 
    17831783 
     
    17901790  accessor.set("consumerSecret", "gVwj45GaW6Sp7gdua6UFyiF910ffIety0sD1dv36Cz8"); 
    17911791 
    1792   let history; 
    1793   if (__context__.Tweets) { 
    1794     history = __context__.Tweets; 
    1795   } else { 
     1792  let history = __context__.Tweets; 
     1793  if (!history) 
    17961794    history = __context__.Tweets = accessor.get("history", []); 
    17971795  }