Revision: 4338
          http://vexi.svn.sourceforge.net/vexi/?rev=4338&view=rev
Author:   mkpg2
Date:     2012-01-24 13:12:58 +0000 (Tue, 24 Jan 2012)
Log Message:
-----------
Fix fix. Sometimes generating incorrect decimal format pattern.

Modified Paths:
--------------
    trunk/org.vexi-library.js/src/main/java/org/ibex/js/JSNumber.java

Modified: trunk/org.vexi-library.js/src/main/java/org/ibex/js/JSNumber.java
===================================================================
--- trunk/org.vexi-library.js/src/main/java/org/ibex/js/JSNumber.java   
2012-01-24 02:56:14 UTC (rev 4337)
+++ trunk/org.vexi-library.js/src/main/java/org/ibex/js/JSNumber.java   
2012-01-24 13:12:58 UTC (rev 4338)
@@ -118,7 +118,7 @@
             int dpMin = JSU.getArg_int(args, 0, 0);
             int dpMax = JSU.getArg_int(args, 1, 20);
             String format = "0";
-            if(dpMin>0) format+=".";
+            if(dpMax>0) format+=".";
             for(int i=0; i<dpMin; i++) format+="0";
             for(int i=0; i<dpMax-dpMin; i++) format+="#";
             

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Vexi-svn mailing list
Vexi-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to