Show
Ignore:
Timestamp:
07/25/09 02:22:38 (4 years ago)
Author:
NeoCat
Message:

DOM Storageが返す値をStringに変換して返すように (Firefox3.0対応)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • websites/twicli/twicli.html

    r34588 r34605  
    196196function readCookie(key) { 
    197197        if (window.localStorage && window.localStorage["twicli_"+key]) 
    198                 return window.localStorage["twicli_"+key]; 
     198                return String(window.localStorage["twicli_"+key]); 
    199199        key += "="; 
    200200        var scookie = document.cookie + ";";