Skip to content

Commit cab61f4

Browse files
Apply Pull trentrichardson#664 - Selecting a time should focus input field
1 parent e998492 commit cab61f4

5 files changed

+7
-5
lines changed

dist/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ <h3>Requirements</h3>
126126
<h3>Version</h3>
127127
<p>Version 1.4.2</p>
128128

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

dist/jquery-ui-timepicker-addon.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! jQuery Timepicker Addon - v1.4.2 - 2013-11-10
1+
/*! jQuery Timepicker Addon - v1.4.2 - 2013-11-18
22
* http://trentrichardson.com/examples/timepicker
33
* Copyright (c) 2013 Trent Richardson; Licensed MIT */
44
(function ($) {
@@ -799,6 +799,7 @@
799799
this.timeDefined = true;
800800
if (hasChanged) {
801801
this._updateDateTime();
802+
this.$input.focus();
802803
}
803804
},
804805

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

+1
Original file line numberDiff line numberDiff line change
@@ -805,6 +805,7 @@
805805
this.timeDefined = true;
806806
if (hasChanged) {
807807
this._updateDateTime();
808+
this.$input.focus();
808809
}
809810
},
810811

0 commit comments

Comments
 (0)