Skip to content

Commit a5d6c51

Browse files
Pull trentrichardson#648 - Fixed defaultValue when focus by judgedim
1 parent fcf05f8 commit a5d6c51

5 files changed

+11
-5
lines changed

dist/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ <h3>Requirements</h3>
127127
<h3>Version</h3>
128128
<p>Version 1.4.1</p>
129129

130-
<p>Last updated on 2013-08-30</p>
130+
<p>Last updated on 2013-10-15</p>
131131
<p>jQuery Timepicker Addon is currently available for use in all personal or commercial projects under the MIT license.</p>
132132
<p><a href="http://trentrichardson.com/Impromptu/MIT-LICENSE.txt" title="MIT License">MIT License</a></p>
133133

dist/jquery-ui-timepicker-addon.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! jQuery Timepicker Addon - v1.4.1 - 2013-08-30
1+
/*! jQuery Timepicker Addon - v1.4.1 - 2013-10-15
22
* http://trentrichardson.com/examples/timepicker
33
* Copyright (c) 2013 Trent Richardson; Licensed MIT */
44
(function ($) {
@@ -743,6 +743,9 @@
743743
if (microsec !== false) {
744744
microsec = parseInt(microsec, 10);
745745
}
746+
if (timezone !== false) {
747+
timezone = parseInt(timezone, 10);
748+
}
746749

747750
var ampm = o[hour < 12 ? 'amNames' : 'pmNames'][0];
748751

dist/jquery-ui-timepicker-addon.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/jquery-ui-timepicker-addon.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/jquery-ui-timepicker-addon.js

+3
Original file line numberDiff line numberDiff line change
@@ -749,6 +749,9 @@
749749
if (microsec !== false) {
750750
microsec = parseInt(microsec, 10);
751751
}
752+
if (timezone !== false) {
753+
timezone = parseInt(timezone, 10);
754+
}
752755

753756
var ampm = o[hour < 12 ? 'amNames' : 'pmNames'][0];
754757

0 commit comments

Comments
 (0)