OSDN Git Service

Version 0.6.218, Fix the bug of X.Net & X.Audio.
[pettanr/clientJs.git] / 0.6.x / js / 06_net / 10_XOAuth2.js
index e1f923e..5f23c6c 100644 (file)
@@ -414,7 +414,7 @@ function X_OAuth2_updateLocalStorage( cmd, that, name, value ){
        var action = cmd === '+' ? 'setItem' : cmd === '-' ? 'removeItem' : 'getItem',
                pair;
        
-       if( window.localStorage ){
+       if( window.localStorage ){ // TODO http://qiita.com/narikei/items/f55fb9cb398beac52ea9
                return window.localStorage[ action ]( X_Pair_get( that )[ 'clientID' ] + name, value );
        };