Skip to content

Commit fcf05f8

Browse files
Pull trentrichardson#632 - Added missed character by semsorock
1 parent 8485a8d commit fcf05f8

5 files changed

+11
-11
lines changed

dist/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ <h3>Requirements</h3>
125125

126126
<br />
127127
<h3>Version</h3>
128-
<p>Version 1.4</p>
128+
<p>Version 1.4.1</p>
129129

130-
<p>Last updated on 2013-08-11</p>
130+
<p>Last updated on 2013-08-30</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-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! jQuery Timepicker Addon - v1.4 - 2013-08-11
1+
/*! jQuery Timepicker Addon - v1.4.1 - 2013-08-30
22
* http://trentrichardson.com/examples/timepicker
33
* Copyright (c) 2013 Trent Richardson; Licensed MIT */
44
(function ($) {
@@ -16,7 +16,7 @@
1616
*/
1717
$.extend($.ui, {
1818
timepicker: {
19-
version: "1.4"
19+
version: "1.4.1"
2020
}
2121
});
2222

@@ -829,7 +829,7 @@
829829
var formattedDateTime = this.formattedDate;
830830

831831
// if a slider was changed but datepicker doesn't have a value yet, set it
832-
if (dp_inst.lastVa === "") {
832+
if (dp_inst.lastVal === "") {
833833
dp_inst.currentYear = dp_inst.selectedYear;
834834
dp_inst.currentMonth = dp_inst.selectedMonth;
835835
dp_inst.currentDay = dp_inst.selectedDay;
@@ -2129,6 +2129,6 @@
21292129
/*
21302130
* Keep up with the version
21312131
*/
2132-
$.timepicker.version = "1.4";
2132+
$.timepicker.version = "1.4.1";
21332133

21342134
})(jQuery);

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

+3-3
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-1
Original file line numberDiff line numberDiff line change
@@ -835,7 +835,7 @@
835835
var formattedDateTime = this.formattedDate;
836836

837837
// if a slider was changed but datepicker doesn't have a value yet, set it
838-
if (dp_inst.lastVa === "") {
838+
if (dp_inst.lastVal === "") {
839839
dp_inst.currentYear = dp_inst.selectedYear;
840840
dp_inst.currentMonth = dp_inst.selectedMonth;
841841
dp_inst.currentDay = dp_inst.selectedDay;

0 commit comments

Comments
 (0)