BUG 10277 Dynaform designer Task properties error SOLVED
- Unknow error merging object properties - Validating the merging of the object properties
This commit is contained in:
committed by
Erik Amaru Ortiz
parent
78be8f7dd3
commit
26f2ffbfb2
@@ -105,7 +105,7 @@ return this;};Function.prototype.isObject=false;Function.prototype.isArray=false
|
|||||||
{return oThis.apply(Class,argumentsToArray(arguments).concat(args));};}
|
{return oThis.apply(Class,argumentsToArray(arguments).concat(args));};}
|
||||||
catch(e){return this;}};Function.prototype.args=function()
|
catch(e){return this;}};Function.prototype.args=function()
|
||||||
{var oThis=this;var args=argumentsToArray(arguments);return function()
|
{var oThis=this;var args=argumentsToArray(arguments);return function()
|
||||||
{return oThis.apply(oThis,argumentsToArray(arguments).concat(args));};};String.prototype.isAlphaUS=function()
|
{try{return oThis.apply(oThis,argumentsToArray(arguments).concat(args));}catch(theError){}};};String.prototype.isAlphaUS=function()
|
||||||
{var a=this.split("");var b="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_".split("");for(var i=0;i<a.length;i++)
|
{var a=this.split("");var b="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890_".split("");for(var i=0;i<a.length;i++)
|
||||||
{if(!b.inArray(a[i])){return false;}}
|
{if(!b.inArray(a[i])){return false;}}
|
||||||
return true;};String.prototype.isString=true;String.prototype.trim=function(){return(this.replace(new RegExp("^([\\s]+)|([\\s]+)$","gm"),""));};String.prototype.leftTrim=function(){return(this.replace(new RegExp("^[\\s]+","gm"),""));};String.prototype.rightTrim=function(){return(this.replace(new RegExp("[\\s]+$","gm"),""));};String.prototype.stripTags=function()
|
return true;};String.prototype.isString=true;String.prototype.trim=function(){return(this.replace(new RegExp("^([\\s]+)|([\\s]+)$","gm"),""));};String.prototype.leftTrim=function(){return(this.replace(new RegExp("^[\\s]+","gm"),""));};String.prototype.rightTrim=function(){return(this.replace(new RegExp("[\\s]+$","gm"),""));};String.prototype.stripTags=function()
|
||||||
|
|||||||
@@ -610,7 +610,11 @@ var maborak = function(forceCssLoad){
|
|||||||
var args=argumentsToArray(arguments);
|
var args=argumentsToArray(arguments);
|
||||||
return function()
|
return function()
|
||||||
{
|
{
|
||||||
return oThis.apply(oThis,argumentsToArray(arguments).concat(args));
|
try {
|
||||||
|
return oThis.apply(oThis,argumentsToArray(arguments).concat(args));
|
||||||
|
} catch (theError) {
|
||||||
|
//Unknow error
|
||||||
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
String.prototype.isAlphaUS=function()
|
String.prototype.isAlphaUS=function()
|
||||||
|
|||||||
Reference in New Issue
Block a user