Revision: 1964
          http://svn.sourceforge.net/vexi/?rev=1964&view=rev
Author:   clrg
Date:     2007-07-09 00:54:13 -0700 (Mon, 09 Jul 2007)

Log Message:
-----------
Monthview was refusing to acknowledge active month

Modified Paths:
--------------
    widgets/trunk/org.vexi.widgets/src/vexi/util/date/monthview.t

Modified: widgets/trunk/org.vexi.widgets/src/vexi/util/date/monthview.t
===================================================================
--- widgets/trunk/org.vexi.widgets/src/vexi/util/date/monthview.t       
2007-07-09 06:05:11 UTC (rev 1963)
+++ widgets/trunk/org.vexi.widgets/src/vexi/util/date/monthview.t       
2007-07-09 07:54:13 UTC (rev 1964)
@@ -221,9 +221,9 @@
                     v = v.substring(1);
                 v = vexi.string.parseInt(v);
             }
-            if (typeof v == "number" and 13 > v and v > 0)
+            if (typeof(v) == "number" and 13 > v and v > 0)
             {
-                if (tmpmonth != null and month != v)
+                if (tmpmonth != null)
                 {
                     cascade = v;
                     setDates();
@@ -240,7 +240,7 @@
         /** sync the date view */
         thisbox.year ++= function(v)
         {
-            if (tmpyear != null and year != v)
+            if (tmpyear != null)
             {
                 cascade = v;
                 setDates();


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

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Vexi-svn mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to