Changeset 215407
- Timestamp:
- 03/09/2010 05:43:01 PM (16 years ago)
- Location:
- world-clock-widget/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (3 diffs)
-
worldclock.js (modified) (1 diff)
-
worldclock.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
world-clock-widget/trunk/readme.txt
r212763 r215407 5 5 Requires at least: 2.6.5 6 6 Tested up to: 2.9.2 7 Stable tag: 0.7. 07 Stable tag: 0.7.1 8 8 9 9 Sidebar widget to easy customize and display your date and time of multiple timezones. All settings are available from Sidebar Widget Admin. … … 24 24 == Changelog == 25 25 26 = 0.7.1 = 27 * Fix the negative minute. 28 26 29 = 0.7.0 = 27 30 * Edit function fix. … … 39 42 40 43 = Do you have any screenshot? = 41 No, I don't. But I can show you my development space, check this out: [Wordpress 2.6.5](http://xandertan.selfip.org/dev/wp/2_6_5/ "Wordpress 2.6.5"), [Wordpress 2.7.1](http://xandertan.selfip.org/dev/wp/2_7_1/ "Wordpress 2.7.1"), and [Wordpress 2.8.0](http://xandertan.selfip.org/dev/wp/2_8_0/ "Wordpress 2.8.0")44 No, I don't. But I can show you my development space, check this out: [Wordpress 2.6.5](http://xandertan.selfip.org/dev/wp/2_6_5/ "Wordpress 2.6.5"), [Wordpress 2.7.1](http://xandertan.selfip.org/dev/wp/2_7_1/ "Wordpress 2.7.1"), [Wordpress 2.8.0](http://xandertan.selfip.org/dev/wp/2_8_0/ "Wordpress 2.8.0"), and [Wordpress 2.9.2](http://xandertan.selfip.org/dev/wp/2_9_2/ "Wordpress 2.9.2") 42 45 43 46 = What is Daylight Saving Time? = -
world-clock-widget/trunk/worldclock.js
r128726 r215407 31 31 32 32 if(dateHour["min"] >= 60) { 33 dateHour["min"] -= 60; 34 dateHour["hour"] += 1; 33 dateHour["min"] -= 60; 34 dateHour["hour"] += 1; 35 } 36 37 if(dateHour["min"] < 0) { 38 dateHour["min"] += 60; 39 dateHour["hour"] -= 1; 35 40 } 36 41 -
world-clock-widget/trunk/worldclock.php
r212763 r215407 2 2 /* 3 3 Plugin Name: World Clock 4 Version: 0.7. 04 Version: 0.7.1 5 5 Plugin URI: http://wordpress.org/extend/plugins/world-clock-widget/ 6 6 Description: Adds a multi-timezone clock widget to the sidebar.
Note: See TracChangeset
for help on using the changeset viewer.