Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Now button broken #887

Open
wants to merge 36 commits into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
d47cb6f
Fix jsmin error
trentrichardson Sep 16, 2012
b830133
Merge branch 'dev'
trentrichardson Sep 29, 2012
23a7a88
Update last updated date
trentrichardson Sep 29, 2012
033696b
Fix merge conflict
trentrichardson Oct 6, 2012
f503ab2
Update last mod date
trentrichardson Nov 3, 2012
d9e9d7c
Fix last mod date
trentrichardson Nov 7, 2012
a9ba30d
Merge branch 'dev'
trentrichardson Jan 19, 2013
e752ef7
Merge branch 'dev'
trentrichardson Feb 2, 2013
84e39e8
Merge branch 'dev'
trentrichardson Apr 6, 2013
72850b3
Merge branch 'dev'
trentrichardson Apr 13, 2013
640cf34
Merge branch 'dev'
trentrichardson May 5, 2013
6e2d616
Updates docs
trentrichardson May 5, 2013
ce3acd8
Updates docs
trentrichardson May 28, 2013
84e1808
Updates docs
trentrichardson Jun 8, 2013
bef7fab
Updates docs
trentrichardson Jun 15, 2013
2675998
Merge branch 'dev'
trentrichardson Jul 7, 2013
18de616
Merge branch 'dev'
trentrichardson Aug 11, 2013
c892bd3
Merge branch 'dev'
trentrichardson Nov 10, 2013
9e816d4
Merge branch 'dev'
trentrichardson Nov 23, 2013
842046c
Merge branch 'dev'
trentrichardson Nov 30, 2013
dbc3869
Merge branch 'dev'
trentrichardson Mar 29, 2014
69348fd
Merge branch 'dev'
trentrichardson May 26, 2014
e130b66
Merge branch 'dev'
trentrichardson Aug 9, 2014
3c9065e
Merge branch 'dev'
trentrichardson Sep 1, 2014
8c597e8
Merge branch 'dev'
trentrichardson Mar 16, 2015
b523fe1
Merge branch 'dev'
trentrichardson Apr 19, 2015
81976d7
Merge branch 'dev'
trentrichardson May 11, 2015
4f87dc1
Merge branch 'dev'
trentrichardson May 24, 2015
eb0a187
tweak package.json
trentrichardson Jul 22, 2015
ecc41f9
Fix version in package.json
trentrichardson Jul 22, 2015
95d3ec3
Merge branch 'dev'
trentrichardson Nov 14, 2015
17c4f29
Merge branch 'dev'
trentrichardson Nov 14, 2015
72f1867
Merge branch 'dev'
trentrichardson Apr 20, 2016
f9415cd
Merge branch 'dev'
trentrichardson Apr 20, 2016
e042779
Fixed an issue where datepicker code is not respecting timezone.Cause…
TrentonZero Jul 6, 2016
6b9c576
fix for changing timezone on multiple now button presses
TrentonZero Jul 6, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/jquery-ui-timepicker-addon.js
Original file line number Diff line number Diff line change
Expand Up @@ -2029,7 +2029,8 @@
}

parsedTime = $.datepicker.parseTime(timeFormat, parts.timeString, timeSettings);

// the datepicker parse time method does not respect timezones
parsedTime.timezone = timeSettings.timezone;
if (!parsedTime) {
throw 'Wrong time format';
}
Expand Down