public
Description: Date Input is a no frills date picker plugin for jQuery
Homepage:
Clone URL: git://github.com/jonleighton/date_input.git
date_input / CHANGELOG
100644 85 lines (61 sloc) 2.674 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Version 1.2.1
-------------
 
 * Fix CSS bug with WebKit-based browsers
 
Version 1.2.0
-------------
 
 * Implement better keyboard navigation via arrow keys, Pg-Up, Pg-Down, Esc, etc [Adapted from a
   patch by Kevin Field]
 * Implement year scrolling, as well as month scrolling
 * Use XML entities for compatibility
 * Use position rather than offset to determine whether a click is inside or outside of the date
   selector [steverobinson]
 
Version 1.1.8
-------------
 
 * Implement fix for reported crash in IE6/7 (see http://plugins.jquery.com/node/5937) [thanks
   Olly Hodgson]
 
Version 1.1.7
-------------
 
 * Solve weird issue with duplicate and missing days in certain time zones (#2984,
   thanks to Arsenicus)
 * Insert the date picker directly after the input, so that the links in it can be
   tabbed through. Listen for the Esc key and hide the date picker if it's pressed (#2276)
 
Version 1.1.6
-------------
 
 * Remove the requirement for the dimensions plugin, which is included in
   jQuery 1.2.6
 
Version 1.1.5
-------------
 
 * Bugfix - In IE 6, the iframe layer had a great z-index than the actual calendar,
   so would obstruct it from view (#2683)
 
Version 1.1.4
-------------
 
 * Moved the z-index and other CSS declarations from the Javascript into the CSS
   file for easier customisation (#1521)
 * Bugfix - The current month should always be stored using the first day so we
   can be sure that day exists when the month is changed (#1717)
 
Version 1.1.3
-------------
 
 * Bugfix - Customisations (translations etc.) now work in IE 6/7 [Heads up:
   Christian Jarhult]
 
Version 1.1.2
-------------
 
 * Bugfix - Manually trigger a change event on the input when we change its
   value. [Heads up: Arne-Kolja Bachstein]
 * Bugfix - Don't allow IE6 select lists to show through. This was supposed to
   work but I obviously neglected my testing duties! [Heads up: kgmiller]
 
Version 1.1.1
-------------
 
 * Bugfix - Make the stringToDate function a bit more forgiving. Previously
   it wouldn't accept international characters in the month name (e.g. Mär)
   Now the month name is only required to be a positive number of non-space
   characters. [Heads up: Arne-Kolja Bachstein]
 
Version 1.1
-----------
 
 * Localise the $ function for the whole plugin, for better compatibility
 * Add an options argument, a simple way to customise or localise the plugin
 * Add a start_of_week option and make the code more general to accomodate this
 * Hide the date selector if a click is detected anywhere within the window, not
   just in the body of the document (only for browsers which support window.onclick)
 
Version 1.0
-----------
 
 * Initial release