diff --git a/o2web/source/o2_core/o2/widget/Common.js b/o2web/source/o2_core/o2/widget/Common.js index 3b0baed47ed9ecafae5e232552e87b23ec1d068f..c079972ff9f6a0abe8e7a4e7bd3a6d0c07af9da8 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 d705361ac255861dfa8242ee396a650d1e4f3145..49334874361bcc760324b4c02cb9e2ace99a76df 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 f282de85d04a7afad65c349dd6b4d630d4613cfa..629fd40cd2428c86c78f0fc4db21e7c59449dff7 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",