Skip to content

Commit

Permalink
removed console.log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
stuarthalloway committed Jun 4, 2009
1 parent 817b54b commit 95fa2a7
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion public/javascripts/jquery.numberformatter-1.1.2.js
Expand Up @@ -193,7 +193,6 @@
nf.formatRight = function(right, options) {
var digits = Math.max(options.decimalDigits,
Math.min(options.optionalDecimalDigits || 0, right.length));
console.log("" + right + " " + options.decimalDigits + " " + options.optionalDecimalDigits + " " + right.length);
return nf.pad(right.substring(0, digits), digits, "0");
}

Expand Down

0 comments on commit 95fa2a7

Please sign in to comment.