summaryrefslogtreecommitdiffstats
path: root/jquery-ui-timepicker-addon.js
Commit message (Collapse)AuthorAgeFilesLines
* Migrate to grunt setupTrent Richardson2013-07-281-2131/+0
|
* Test the literal handling in formatTime() a little more and fix a warning ↵Stephen Vance2013-07-281-1/+1
| | | | and a curious behavior.
* Start the tests for $.datepicker.formatTime(), fix a bug in it for ↵Stephen Vance2013-07-271-6/+8
| | | | microsecond handling, and change the method comments to jsdoc.
* Fix #607 jquery noConflict issueTrent Richardson2013-07-161-1/+1
|
* Merge pull request #606 from srvance/devTrent Richardson2013-07-151-71/+63
|\ | | | | More tests added, cleanup
| * Refactor splitDateTime() signature to eliminate two unused parameters.Stephen Vance2013-07-141-2/+2
| |
| * I dug into the project history to figure out how to test the error path of ↵Stephen Vance2013-07-141-39/+15
| | | | | | | | splitDateTime() and discovered that the code that motivated the error path was replaced but the error handling it required was not removed. Error handling added to parseDate() override in commit 4496926c00b6b2caebfa93603bdcaff438294c19. Refactored to splitDateTime() in e7c7d4024db3e331003db105036667702c8e4bd8. Happy path implementation replaced in b838a211e32022f942b359c7835cd3fadb024759.
| * Write direct tests for the new computeEffectiveSetting() function. Leave the ↵Stephen Vance2013-07-141-0/+1
| | | | | | | | corresponding variants of splitDateTime() because it still exercises other important facets of the algorithm.
| * Refactor the effective setting computations out of splitDateTime()Stephen Vance2013-07-141-2/+6
| |
| * Eliminate an unused intermediate variable.Stephen Vance2013-07-141-2/+1
| |
| * Now that the basic time and date parsing functions are test protected, make ↵Stephen Vance2013-07-141-14/+18
| | | | | | | | splitDateTime() return an object instead of an array to simplify the code a bit.
| * Refactored parseDateTimeInternal() to make it a little simpler to read and test.Stephen Vance2013-07-141-13/+19
| |
| * Fix parseDateTimeInternal() bug. The parsers returned false. The function ↵Stephen Vance2013-07-141-1/+1
| | | | | | | | tested for null with typed equality. Changed to test for falsiness.
| * Expose parseDateTimeInternal for testing. I'm going to test it even though I ↵Stephen Vance2013-07-141-1/+2
| | | | | | | | haven't tested its datepicker collaborator functions.
| * Expose splitDateTime for testing.Stephen Vance2013-07-131-1/+2
| |
| * Doco fix.Stephen Vance2013-07-131-1/+1
| |
| * Minor simplification of timepicker.timezoneAdjust(). Left the addition of ↵Stephen Vance2013-07-121-1/+1
| | | | | | | | the negation of date.getTimezoneOffset() to make it clear that we need to reverse its sense. Just representing it as straight subtraction might be mathematically simpler and marginally more performant, but would fail to suggest this important detail.
| * Fix some jsdoc.Stephen Vance2013-07-121-2/+2
| |
| * Test timepicker.timezoneOffsetString(). Fix lower range issue and simplify ↵Stephen Vance2013-07-081-3/+3
| | | | | | | | formatting of output string by eliminating 'magic' 101 values.
| * Expand timezoneOffsetNumber() docsStephen Vance2013-07-071-2/+2
| |
| * Start tests for timepicker functions. Test timezoneOffsetNumber() and fix ↵Stephen Vance2013-07-071-6/+6
| | | | | | | | seeming deviation from intent, although not in a likely meaningful way.
* | Fix conflictTrent Richardson2013-07-091-44/+53
|\ \ | |/
| * Write tests for selectLocalTimezone and do some minor simplification.Stephen Vance2013-07-061-3/+4
| |
| * Minor typo fix.Stephen Vance2013-07-061-1/+1
| |
| * Additional jsdoc cleanups.Stephen Vance2013-07-061-10/+10
| |
| * Rename util to _util to make it clearer it's not to be used normally.Stephen Vance2013-07-061-1/+1
| |
| * Wrote tests for detectSupport, fixed a bug in AM/PM detection, simplified ↵Stephen Vance2013-07-061-5/+6
| | | | | | | | isIn() function, and eliminated unnecessary escapes in regular expression.
| * Minor typo fixesStephen Vance2013-07-061-2/+2
| |
| * Test and simplify convert24to12, including making it resistant to out of ↵Stephen Vance2013-07-061-4/+3
| | | | | | | | bounds values.
| * Test two of the utility functions and fix a bug that was found.Stephen Vance2013-07-061-0/+8
| |
| * A couple minor typo fixes.Stephen Vance2013-07-061-2/+2
| |
| * Fixed a couple of issues highlighted by intentions and fixed the jsdoc syntax.Stephen Vance2013-07-061-24/+24
| |
| * Fix comment typoStephen Vance2013-07-061-1/+1
| |
* | New dev versionTrent Richardson2013-07-071-3/+3
| |
* | New Version Ready 1.3.1v1.3.1Trent Richardson2013-07-071-2/+2
| |
* | #601 By jasich - Added missing time format parameter in detectSupportcallTrent Richardson2013-07-021-1/+1
|/
* updates timezone conversionsTrent Richardson2013-06-141-4/+1
|
* Fixes syntax error in last commitTrent Richardson2013-06-141-1/+1
|
* Improvements to microsecond prototype for DateTrent Richardson2013-06-141-3/+7
|
* #588 work on getDate setDate timezone conversionsTrent Richardson2013-05-311-1/+5
|
* Fix for #588 DST bugTrent Richardson2013-05-301-1/+5
|
* Fix for #588 and #213 dealing with Daylight Savings TimeTrent Richardson2013-05-301-1/+2
|
* call limitMinMax when a control gets createdNiklas Jansson2013-05-281-0/+1
| | | | | | If you specified minDateTime the sliders wouldn't be updated with correct min/max values until you modified the date. This call make sure we updates the sliders min/max values at creation too
* Change variable names for .NET MVC minifyTrent Richardson2013-05-161-12/+12
|
* Change function variables to function declarations for .NETs minifyTrent Richardson2013-05-161-7/+7
|
* Correctly set microseconds when setting date and timeKasun Chathuranga2013-05-141-2/+9
|
* #585 add ability to setDate with date stringTrent Richardson2013-05-131-0/+7
|
* Fixed typo in variable referenceDragos Protung2013-05-091-1/+1
|
* New dev versionTrent Richardson2013-05-051-3/+3
|
* Version 1.3v1.3Trent Richardson2013-05-051-2/+2
|
* Merges changes by Moreno - fixes Italian i18n and slider detectionTrent Richardson2013-05-011-1/+1
|
* #583 altField not honoring timeOnly=trueTrent Richardson2013-05-011-10/+12
|
* min/maxInterval options for handleRangeTrent Richardson2013-04-301-21/+38
|
* Fixes microsec bugTrent Richardson2013-04-291-4/+4
|
* change timezone values to minute numbers for easier formatting and js Date ↵Trent Richardson2013-04-251-55/+42
| | | | compat
* iso8601 option removed, pulls from support propertyTrent Richardson2013-04-241-36/+38
|
* #577 Microseconds added to the timepickerTrent Richardson2013-04-241-15/+88
|
* Clean up date range controlsTrent Richardson2013-04-231-21/+23
|
* Updates documentation and versionTrent Richardson2013-04-231-3/+3
|
* Enable unit detection from timeFormatTrent Richardson2013-04-231-19/+43
|
* Fixes timeZone casing, setDate now considers timezoneTrent Richardson2013-04-231-15/+25
|
* Update to timezone functionality, remove defaultTimezone and ↵Trent Richardson2013-04-221-24/+61
| | | | useLocalTimezone options
* New dev versionTrent Richardson2013-04-131-3/+3
|
* Updateses documentationv1.2.2Trent Richardson2013-04-131-2/+2
|
* Creates new dev versionTrent Richardson2013-04-061-3/+3
|
* Updating versionv1.2.1Trent Richardson2013-04-061-2/+2
|
* Fixes #570 select generation to honor timeformatTrent Richardson2013-04-011-3/+4
|
* Fixes #547 - sometimes doest detect ampm when hh:mm TTTrent Richardson2013-03-281-1/+1
|
* Applies pull #566 to remove unused varsTrent Richardson2013-03-261-3/+1
|
* #561 - do not break datepickers defaultDate optionTrent Richardson2013-03-131-2/+6
|
* Fix formattingTrent Richardson2013-03-091-0/+1
|
* Fixes several lint errorsTrent Richardson2013-03-091-28/+54
|
* Create new dev versionTrent Richardson2013-02-021-3/+3
|
* Fixes minify syntax errorv1.2Trent Richardson2013-02-021-1/+1
|
* Update version, ready to mergeTrent Richardson2013-02-021-4/+4
|
* Fixes #543 - jqueryui 1.10 no longer implements $.datepicker.logTrent Richardson2013-01-291-6/+16
|
* Update docsTrent Richardson2013-01-291-1/+1
|
* Fixes #540 - ASP.NET bundling syntax error fixTrent Richardson2013-01-291-1/+1
|
* Fixes issue #470 - getDate null if only sliders usedTrent Richardson2013-01-291-0/+7
|
* New dev versionTrent Richardson2013-01-191-3/+3
|
* Remove dev from versionv1.1.2Trent Richardson2013-01-191-1/+1
|
* Clean up docsTrent Richardson2013-01-191-1/+1
|
* Fixes #471Baptiste Lafontaine2013-01-171-5/+5
| | | It may have some side effect. Seems working fine for me
* Update loose parse to try multiple formatsTrent Richardson2013-01-141-3/+13
|
* Update loose parse to use ISOTrent Richardson2013-01-141-1/+1
|
* Improve parsing flexibilityTrent Richardson2013-01-111-3/+3
|
* Fix parsing for single digitsTrent Richardson2013-01-111-3/+4
|
* Fix conditions for maxDate detectionTrent Richardson2013-01-091-6/+10
|
* Fixes bug hourMin/Max defaults the input before setting a timeTrent Richardson2013-01-071-9/+8
|
* Fixes bug hourMin/Max defaults the input before setting a timeTrent Richardson2013-01-071-0/+5
|
* scambra- fix setting time in cooperation with step settingsTrent Richardson2013-01-011-4/+4
|
* Switch substr to slice as IE8 doesn't do negative substr properlyLawrence2012-11-271-2/+2
|
* Timezone change now fires onSelectTrent Richardson2012-11-151-0/+1
|
* Raykov - date range and alternate fieldsTrent Richardson2012-11-151-2/+2
|
* New dev versionTrent Richardson2012-11-071-3/+3
|
* New version 1.1.1v1.1.1Trent Richardson2012-11-071-2/+2
|
* Fixes #497 problem with timeFormat hTrent Richardson2012-11-061-6/+2
|
* Create new dev versionTrent Richardson2012-11-031-1886/+1886
|
* Final tweaks to merge with masterv1.1.0Trent Richardson2012-11-031-2/+2
|
* change strict to parseTrent Richardson2012-11-011-2/+5
|