Fix failure to load the schema on read-only DB.
[Samba.git] / swat / style / qooxdoo / widgets / types / QxNumber.js
blob4c424448934f9e06cd8d23e97e355852e653eb7e
1 /* Copyright (c): 2002-2005 (Germany): United Internet, 1&1, GMX, Schlund+Partner, Alturo */
2 function QxNumber(v){if(typeof v=="number"){return v;}else if(typeof v=="string"){if(v=="true"||v=="false"){return Number(Boolean(v));}else {return parseFloat(v);};}else if(typeof v=="boolean"){return Number(v);}else {return NaN;};};