| | |
| | | |
| | | // 发生了错误事件 |
| | | socket.onerror = function () { |
| | | alert("Socket error……"); |
| | | // alert("Socket error……"); |
| | | console.log("Socket error……"); |
| | | }; |
| | | |
| | | $(window).unload(function () { |
| | |
| | | if ("video" == pageTag) { |
| | | url = "/group/video"; |
| | | } |
| | | |
| | | if ("sys" == pageTag) { |
| | | url = "/index?deptId=" + deptId; |
| | | } |
| | | window.location.href = url; |
| | | } |
| | | |
| | | /** |
| | | * 初始标语数据 |
| | | */ |
| | | function initDicSlogan() { |
| | | if (dicSlogan) { |
| | | if (dicSlogan.color == "red") { |
| | | $("#sloganText").css({ |
| | | color: "#DE2910" |
| | | }); |
| | | } else { |
| | | $("#sloganText").css({ |
| | | color: "#7ddfff" |
| | | }); |
| | | } |
| | | $("#sloganText").text(dicSlogan.content); |
| | | } |
| | | } |
| | | |
| | | //浏览器全屏 |
| | | var fullscreen = false; |
| | | |