Author: justi9
Date: 2008-05-09 12:14:57 -0400 (Fri, 09 May 2008)
New Revision: 2031
Modified:
mgmt/cumin/python/cumin/broker.strings
Log:
Check for negative values as well
Modified: mgmt/cumin/python/cumin/broker.strings
===================================================================
--- mgmt/cumin/python/cumin/broker.strings 2008-05-09 16:12:32 UTC (rev 2030)
+++ mgmt/cumin/python/cumin/broker.strings 2008-05-09 16:14:57 UTC (rev 2031)
@@ -93,7 +93,7 @@
count = wooly.doc().elembyid("timer_count").set("" + secs);
ending = wooly.doc().elembyid("timer_word").set(secs == 1 ?
"second" : "seconds");
- if (secs == 0) {
+ if (secs < 1) {
location.reload();
}
}
Show replies by date