lsc před 2 roky
rodič
revize
100267f18e
1 změnil soubory, kde provedl 36 přidání a 7 odebrání
  1. 36 7
      js/Desktop/DeskTop.js

+ 36 - 7
js/Desktop/DeskTop.js

@@ -2892,12 +2892,41 @@ U.MD.D.I.getEditorContent = function (iframe) {
 }
 
 U.MD.D.I.getContent = function (cid, s, task, t, uid, type, iframe) {
-    U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
-        if (res.value[0].length > 0) {
-            // resolve(res.value[0][0].text);
-            iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
-                $(fileInput).val('');
-            });
+    // U.A.Request(US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type, [], function (res) {
+    //     if (res.value[0].length > 0) {
+    //         // resolve(res.value[0][0].text);
+    //         iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
+    //             $(fileInput).val('');
+    //         });
+    //     }
+    // }, [], { "type": "GET", "withCredentials": true });
+
+    var xmlhttp;
+    var Mac,Sn,DeviceId 
+    if (window.XMLHttpRequest)
+    {
+        //  IE7+, Firefox, Chrome, Opera, Safari 浏览器执行代码
+        xmlhttp=new XMLHttpRequest();
+    }
+    else
+    {
+        // IE6, IE5 浏览器执行代码
+        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
+    }
+    xmlhttp.onreadystatechange=function()
+    {
+        debugger
+        if (xmlhttp.readyState==4 && xmlhttp.status==200)
+        {
+               //     if (res.value[0].length > 0) {
+    //         // resolve(res.value[0][0].text);
+    //         iframe.contentWindow.editor.minder.importData('json', res.value[0][0].text).then(function (data) {
+    //             $(fileInput).val('');
+    //         });
+    //     }
         }
-    }, [], { "type": "GET", "withCredentials": true });
+    }
+    xmlhttp.open("GET",US.Config.pbl + "selectWord2?uid=" + uid + "&cid=" + cid + "&s=" + s + "&task=" + task + "&t=" + t + "&type=" + type,true);
+    xmlhttp.send();
+
 }