r3189 committed - spinner: removed console.log

r3189 committed - spinner: removed console.log


Revision: 3189
Author: pazu2k@gmail.com
Date: Thu Sep 3 10:21:18 2009
Log: spinner: removed console.log
http://code.google.com/p/jquery-ui/source/detail?r=3189
Modified:
/branches/dev/spinner/ui/ui.spinner.js
=======================================
--- /branches/dev/spinner/ui/ui.spinner.js    Thu Sep 3 10:01:12 2009
+++ /branches/dev/spinner/ui/ui.spinner.js    Thu Sep 3 10:21:18 2009
@@ -377,7 +377,6 @@
                val = val.replace(new
RegExp('\\'+this.options.groupSeparator,'g'), '');
            }
            val = val.replace(new RegExp('[^' + this._validChars()
+ ']', 'gi'), '').split(this.options.radixPoint);
-            console.log(val);
            result = parseInt(val[0] == '-' ? 0 : val[0] || 0, this.options.radix);
            if (val.length > 1) {
                result += parseInt(val[1], this.options.radix) /
Math.pow(this.options.radix, val[1].length) *