Applying improvements selected from IcehrmPro for release v21.0.0

This commit is contained in:
gamonoid
2018-02-03 04:42:17 +01:00
parent e7792e7d79
commit f783163a78
11 changed files with 45 additions and 23 deletions

View File

@@ -2461,9 +2461,10 @@ IceHRMBase.method('clearFileElement', function (elementName) {
IceHRMBase.method('fixJSON', function (json) {
if(this.noJSONRequests == "1"){
json = json.replace(/"/g,'|');
json = window.btoa(json);
}
return json;
});