From f72b4fb50522625e701dc79cedb7a15f4fd72ab6 Mon Sep 17 00:00:00 2001 From: huqi Date: Mon, 22 Jun 2020 00:49:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=AF=E6=8C=81=E4=B8=BB=E6=B5=81=E6=A1=86?= =?UTF-8?q?=E6=9E=B6=EF=BC=8C=E4=B8=80=E4=BA=9B=E8=B7=AF=E5=BE=84=E8=A7=A3?= =?UTF-8?q?=E6=9E=90=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- o2web/source/o2_core/o2/widget/Common.js | 4 ++-- o2web/source/x_component_Template/MPopupForm.js | 2 +- o2web/source/x_component_Template/widget/ColorPicker.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/o2web/source/o2_core/o2/widget/Common.js b/o2web/source/o2_core/o2/widget/Common.js index 3b0baed47e..c079972ff9 100644 --- a/o2web/source/o2_core/o2/widget/Common.js +++ b/o2web/source/o2_core/o2/widget/Common.js @@ -13,7 +13,7 @@ o2.widget.Common = new Class({ }else{ this.cssPath = (this.cssPath.indexOf("?")!=-1) ? this.cssPath+"&v="+o2.version.v : this.cssPath+"?v="+o2.version.v; var r = new Request.JSON({ - url: this.cssPath, + url: o2.filterUrl(this.cssPath), secure: false, async: false, method: "get", @@ -63,4 +63,4 @@ o2.widget.Common = new Class({ }); return false; } -}); \ No newline at end of file +}); diff --git a/o2web/source/x_component_Template/MPopupForm.js b/o2web/source/x_component_Template/MPopupForm.js index d705361ac2..4933487436 100644 --- a/o2web/source/x_component_Template/MPopupForm.js +++ b/o2web/source/x_component_Template/MPopupForm.js @@ -77,7 +77,7 @@ MWF.xApplication.Template.MPopupForm = MPopupForm = new Class({ _loadCss: function(){ var css = {}; var r = new Request.JSON({ - url: this.cssPath, + url: o2.filterUrl(this.cssPath), secure: false, async: false, method: "get", diff --git a/o2web/source/x_component_Template/widget/ColorPicker.js b/o2web/source/x_component_Template/widget/ColorPicker.js index f282de85d0..629fd40cd2 100644 --- a/o2web/source/x_component_Template/widget/ColorPicker.js +++ b/o2web/source/x_component_Template/widget/ColorPicker.js @@ -45,7 +45,7 @@ MWF.xApplication.Template.widget.ColorPicker = new Class({ }else{ this.cssPath = (this.cssPath.indexOf("?")!=-1) ? this.cssPath+"&v="+COMMON.version : this.cssPath+"?v="+COMMON.version; var r = new Request.JSON({ - url: this.cssPath, + url: o2.filterUrl(this.cssPath), secure: false, async: false, method: "get", -- GitLab