root 2 vuotta sitten
vanhempi
commit
2a814df910
5 muutettua tiedostoa jossa 16 lisäystä ja 14 poistoa
  1. 2 2
      index.html
  2. 2 1
      js/Controls/Basic.js
  3. 1 1
      js/Controls/Basic/Form.js
  4. 1 1
      js/Controls/index.js
  5. 10 9
      js/Desktop/Onload.js

+ 2 - 2
index.html

@@ -7,8 +7,8 @@
     <meta http-equiv="Cache-Control" content="no-transform" />
     <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
     <meta name="renderer" content="webkit" />
-    <meta name="application-name" content="可可乐博智慧平台" />
-    <meta name="msapplication-tooltip" content="可可乐博智慧平台" />
+    <meta name="application-name" content="智慧课堂平台" />
+    <meta name="msapplication-tooltip" content="智慧课堂平台" />
     <meta http-equiv="pragma" content="no-cache" />
     <meta http-equiv="Cache-Control" content="no-cache, must-revalidate" />
     <meta http-equiv="expires" content="Wed, 26 Feb 1997 08:21:57 GMT" />

+ 2 - 1
js/Controls/Basic.js

@@ -2040,7 +2040,7 @@ U.UF.UI.form.prototype = {
                         //关闭任务栏处理
                         if (U.MD.D.T.taskbar.close) {
                             U.MD.D.T.taskbar.close({ "forms": _formel });
-                            U.MD.N.urlWrite("", "可可乐博智慧平台");
+                            U.MD.N.urlWrite("", "智慧课堂平台");
                         }
                     } catch (e) { }
                     //回调处理
@@ -2070,6 +2070,7 @@ U.UF.UI.form.prototype = {
             if (_headel) {
                 //头部双击放大缩小处理处理
                 _headel.ondblclick = U.UF.C.apply(_headel, function () {
+                    U.UF.EV.stopBubble(event);
                     //判断双击的元素是否在头部导航上,否则如果头部上有其他的按钮什么的双击了,也会触发放大方法
                     if (event.srcElement == this || U.UF.EL.isChild(this, event.srcElement)) {
                         _enlargeel.onclick(); //放大的处理

+ 1 - 1
js/Controls/Basic/Form.js

@@ -263,7 +263,7 @@ U.UF.UI.form.prototype = {
                         //关闭任务栏处理
                         if (U.MD.D.T.taskbar.close) {
                             U.MD.D.T.taskbar.close({ "forms": _formel });
-                            U.MD.N.urlWrite("", "可可乐博智慧平台");
+                            U.MD.N.urlWrite("", "智慧课堂平台");
                         }
                     } catch (e) {}
                     //回调处理

+ 1 - 1
js/Controls/index.js

@@ -2015,7 +2015,7 @@ U.UF.UI.form.prototype = {
                         //关闭任务栏处理
                         if (U.MD.D.T.taskbar.close) {
                             U.MD.D.T.taskbar.close({ "forms": _formel });
-                            U.MD.N.urlWrite("", "可可乐博智慧平台");
+                            U.MD.N.urlWrite("", "智慧课堂平台");
                         }
                     } catch (e) {}
                     //回调处理

+ 10 - 9
js/Desktop/Onload.js

@@ -386,16 +386,17 @@ U.MD.D.getuser = function () {
 //#endregion
 
 U.MD.D.fullscreen = function () {
-    if (document.body.offsetWidth < 1025) {
-        U.UF.C.fullScreen()
-    }
+    //if (document.body.offsetWidth < 1025) {
+    U.UF.C.fullScreen()
+    //}
 
     document.body.addEventListener('dblclick', () => {
-        const isFullScreen = document.fullscreenElement
-        if (isFullScreen) {
-            U.UF.C.cancelfullScreen()
-        } else {
-            U.UF.C.fullScreen()
-        }
+        U.UF.C.fullScreen()
+        // const isFullScreen = document.fullscreenElement
+        // if (isFullScreen) {
+        //     U.UF.C.cancelfullScreen()
+        // } else {
+        //     U.UF.C.fullScreen()
+        // }
     })
 }