diff --git a/o2web/source/o2_core/o2/xDesktop/Authentication.js b/o2web/source/o2_core/o2/xDesktop/Authentication.js index c066f41a1e4e3532bb6b35090de75c773f1897f9..7ca3f6da6f8ed1e6e7c5eb4926aff4820f93242a 100644 --- a/o2web/source/o2_core/o2/xDesktop/Authentication.js +++ b/o2web/source/o2_core/o2/xDesktop/Authentication.js @@ -86,7 +86,7 @@ MWF.xDesktop.Authentication = new Class({ this.socket.close(); this.socket = null; } - Cookie.dispose("x-token"); + //Cookie.dispose("x-token"); if (layout.session && layout.session.user) layout.session.user.token = ""; if( callback ){ callback() diff --git a/o2web/source/x_component_Setting/SettingModuleUI.js b/o2web/source/x_component_Setting/SettingModuleUI.js index 64c29c426cae84a6eb75b691028a28b665b624c1..78eb6bebe0549f4066518ff84a53be94025b02fc 100644 --- a/o2web/source/x_component_Setting/SettingModuleUI.js +++ b/o2web/source/x_component_Setting/SettingModuleUI.js @@ -473,9 +473,9 @@ MWF.xApplication.Setting.UIModuleDocument.DeployEdit = new Class({ this.pathInputNode.set("value", this.data.path); if (this.data.visible){ - this.visibleInputNode.getFirst("option").set("checked", true); + this.visibleInputNode.getFirst("option").set("selected", true); }else{ - this.visibleInputNode.getLast("option").set("checked", true); + this.visibleInputNode.getLast("option").set("selected", true); } // this.widgetNameInputNode.set("value", this.data.widgetName); @@ -648,4 +648,4 @@ MWF.xApplication.Setting.UIModuleDocument.Deploy.Icon = new Class({ } } -}); \ No newline at end of file +});