OSDN Git Service

Version 0.6.104, fix X_shortcut & etc.
[pettanr/clientJs.git] / 0.6.x / js / 05_net / 02_XNetJSONP.js
index 9951a78..13bd9e5 100644 (file)
@@ -49,7 +49,7 @@ function X_NET_JSONP_loadScriptInNinjaIframe( url ){
        
        // TODO '<scr'+'ipt> 化 恐らくアンチウイルスソフトが反応しないための対策
        
-       if( X.UA.IE8 ){
+       if( X_UA.IE8 ){
                html = [
                        // http://blog.livedoor.jp/dankogai/archives/51503830.html              
                        // Ajax - IE8にもJSON入ってます。使えるとは限らないけど
@@ -68,7 +68,7 @@ function X_NET_JSONP_loadScriptInNinjaIframe( url ){
                        '</script>'
                ];
        } else
-       if( X.UA.IE9 ){
+       if( X_UA.IE9 ){
                html = [
                        '<script id="jp"></script>',
                        '<script>',
@@ -87,7 +87,7 @@ function X_NET_JSONP_loadScriptInNinjaIframe( url ){
                        '<script src="', url, '"></script>'
                ];
        } else
-       if( X.UA.IE4 || X.UA.MacIE ){
+       if( X_UA.IE4 || X_UA.MacIE ){
                html = [
                        '<script id="jn"></script>',
                        '<script id="jp"></script>',
@@ -99,7 +99,7 @@ function X_NET_JSONP_loadScriptInNinjaIframe( url ){
                        '</script>'
                ];
        } else
-       if( X.UA.IE < 8 ){ // ie5-7
+       if( X_UA.IE < 8 ){ // ie5-7
                html = [
                        '<script id="jn"></script>',
                        '<script id="jp"></script>',
@@ -141,7 +141,7 @@ function X_NET_JSONP_iframeListener( e ){
 };
 
 
-X_NET_JSONPWrapper = X.Class._override(
+X_NET_JSONPWrapper = X_Class_override(
        new X.EventDispatcher(),
        {
 
@@ -192,4 +192,4 @@ function X_NET_JSONP_operaImageHandleEvent( e ){
                        break;
        };
 };
-if( !X.UA.Opera ) X_NET_JSONP_operaImageHandleEvent = null;
\ No newline at end of file
+if( !X_UA.Opera ) X_NET_JSONP_operaImageHandleEvent = null;
\ No newline at end of file