Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
e47eb8f
Adds the Duration option which allows specifying the show/hide
benjamin-albert Sep 30, 2015
918296b
Merge remote-tracking branch 'origin/master'
benjamin-albert Sep 30, 2015
befca8c
Added Animation, ShowAnim and HideAnim options which allows the
benjamin-albert Sep 30, 2015
3a25847
Adds the MonthFormat option which allows specifying the
Oct 1, 2015
f7a9d0b
Makes the default animation options consistent with datepicker +
benjamin-albert Oct 2, 2015
67da55d
Makes perssing enter choose the current month + make escape close
benjamin-albert Oct 2, 2015
fe5d54f
Merge remote-tracking branch 'upstream/master'
benjamin-albert Oct 2, 2015
05e3035
Added documentation for new options + added a VERSION constant +
benjamin-albert Oct 2, 2015
5e880c4
Update README.md
benjamin-albert Oct 2, 2015
beb3ad0
Update README.md
benjamin-albert Oct 2, 2015
0a3079c
Update README.md
benjamin-albert Oct 2, 2015
ddc5ff0
Update README.md
benjamin-albert Oct 2, 2015
0cc0d06
Added since version 2.4 for new options
benjamin-albert Oct 2, 2015
abfb242
Fixed typos in MonthFormat documentation
benjamin-albert Oct 2, 2015
22b40cb
Update README.md
benjamin-albert Oct 2, 2015
2dd5b41
Removed repeated sentence in MonthFormat documentation
benjamin-albert Oct 2, 2015
a3d4f85
Fixed broken GetSelectdYear unit test and added an alternative
benjamin-albert Oct 2, 2015
892ac8d
Fixed broken GetSelectdYear unit test and added an alternative
benjamin-albert Oct 2, 2015
4393ab8
Merge remote-tracking branch 'origin/master'
benjamin-albert Oct 3, 2015
9d3a5fe
Added documenation for Duration option + fixed inccorect setter examples
benjamin-albert Oct 3, 2015
2a4f17a
Allows the user to disable a animations by passing in none
benjamin-albert Oct 3, 2015
8145dc4
Update README.md
benjamin-albert Oct 3, 2015
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
Prev Previous commit
Next Next commit
Update README.md
  • Loading branch information
benjamin-albert committed Oct 2, 2015
commit beb3ad0b8896a10dff86e353912e15e8a1e8827b
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ $('.selector').MonthPicker('option', 'UseInputMask', false );
<h3>Animation</h3>
Type: String<br />
Default: 'fadeToggle'<br />
lues: <b>['fadeToggle', 'slideToggle']</b><br />
['fadeToggle', 'slideToggle']<br />
Sets the animation to use when the menu both opens and closes.
<p>
If you want to have different animations for opening and closing the menu
Expand All @@ -302,7 +302,7 @@ $('.selector').MonthPicker('option', Animation: 'slideToggle' );
<h3>ShowAnim</h3>
Type: String<br />
Default: 'fadeIn'<br />
Supported values: <b>['fadeIn', 'slideDown']</b><br />
Supported values: ['fadeIn', 'slideDown']<br />
Sets the animation to use only when the menu is opened.
<p>
If you want to have the same animation for both opening and closing the menu use
Expand Down Expand Up @@ -331,7 +331,7 @@ $('.selector').MonthPicker('option', ShowAnim: 'slideDown' );
<h3>HideAnim</h3>
Type: String<br />
Default: 'fadeOut'<br />
lues: <b>['fadeOut', 'slideUp']</b><br />
Supported values: ['fadeOut', 'slideUp']<br />
Sets the animation to use only when the menu is opened.
<p>
If you want to have the same animation for both opening and closing the menu use
Expand Down Expand Up @@ -400,7 +400,7 @@ $('.selector').MonthPicker('option', 'Position', {collision: 'fit', at: 'left bo
<h3>OnAfterMenuOpen</h3>
Type: function<br />
Default: null<br />
This event is triggered after the Month Picker menu opens. As of version 2.4 <b>this</b> refers to the associated input field.
This event is triggered after the Month Picker menu opens. As of version 2.4 this refers to the associated input field.
</p>
<p>
Supply a callback function to handle the event as an init option.
Expand All @@ -420,7 +420,7 @@ $('.selector').MonthPicker('option', 'OnAfterMenuOpen', function(){ ... } );
<h3>OnAfterMenuClose</h3>
Type: function<br />
Default: null<br />
This event is triggered after the Month Picker menu closes. As of version 2.4 <b>this</b> refers to the associated input field.
This event is triggered after the Month Picker menu closes. As of version 2.4 this refers to the associated input field.
</p>
<p>
Supply a callback function to handle the event as an init option.
Expand All @@ -440,7 +440,7 @@ $('.selector').MonthPicker('option', 'OnAfterNextYear', function(){ ... } );
<h3>OnAfterNextYear</h3>
Type: function<br />
Default: null<br />
This event is triggered after the Month Picker next year button has been clicked. As of version 2.4 <b>this</b> refers to the associated input field.
This event is triggered after the Month Picker next year button has been clicked. As of version 2.4 this refers to the associated input field.
</p>
<p>
Supply a callback function to handle the event as an init option.
Expand All @@ -460,7 +460,7 @@ $('.selector').MonthPicker('option', 'OnAfterNextYear', function(){ ... } );
<h3>OnAfterNextYears</h3>
Type: function<br />
Default: null<br />
This event is triggered after the Month Picker next 5 years button has been clicked. As of version 2.4 <b>this</b> refers to the associated input field.
This event is triggered after the Month Picker next 5 years button has been clicked. As of version 2.4 this refers to the associated input field.
</p>
<p>
Supply a callback function to handle the event as an init option.
Expand All @@ -480,7 +480,7 @@ $('.selector').MonthPicker('option', 'OnAfterNextYears', function(){ ... } );
<h3>OnAfterPreviousYear</h3>
Type: function<br />
Default: null<br />
This event is triggered after the Month Picker previous year button has been clicked. As of version 2.4 <b>this</b> refers to the associated input field.
This event is triggered after the Month Picker previous year button has been clicked. As of version 2.4 this refers to the associated input field.
</p>
<p>
Supply a callback function to handle the event as an init option.
Expand All @@ -500,7 +500,7 @@ $('.selector').MonthPicker('option', 'OnAfterPreviousYear', function(){ ... } );
<h3>OnAfterPreviousYears</h3>
Type: function<br />
Default: null<br />
This event is triggered after the Month Picker previous 5 years button has been clicked. As of version 2.4 <b>this</b> refers to the associated input field.
This event is triggered after the Month Picker previous 5 years button has been clicked. As of version 2.4 this refers to the associated input field.
</p>
<p>
Supply a callback function to handle the event as an init option.
Expand All @@ -520,7 +520,7 @@ $('.selector').MonthPicker('option', 'OnAfterPreviousYears', function(){ ... } )
<h3>OnAfterChooseMonth</h3>
Type: function<br />
Default: null<br />
This event is triggered after the Month Picker month button has been clicked. As of version 2.4 <b>this</b> refers to the associated input field.
This event is triggered after the Month Picker month button has been clicked. As of version 2.4 this refers to the associated input field.
</p>
<p>
Supply a callback function to handle the event as an init option.
Expand All @@ -540,7 +540,7 @@ $('.selector').MonthPicker('option', 'OnAfterChooseMonth', function(){ ... } );
<h3>OnAfterChooseMonths</h3>
Type: function<br />
Default: null<br />
This event is triggered after the Month Picker choose months button has been clicked. As of version 2.4 <b>this</b> refers to the associated input field.
This event is triggered after the Month Picker choose months button has been clicked. As of version 2.4 this refers to the associated input field.
</p>
<p>
Supply a callback function to handle the event as an init option.
Expand All @@ -560,7 +560,7 @@ $('.selector').MonthPicker('option', 'OnAfterChooseMonths', function(){ ... } );
<h3>OnAfterChooseYear</h3>
Type: function<br />
Default: null<br />
This event is triggered after the Month Picker choose year button has been clicked. As of version 2.4 <b>this</b> refers to the associated input field.
This event is triggered after the Month Picker choose year button has been clicked. As of version 2.4 this refers to the associated input field.
</p>
<p>
Supply a callback function to handle the event as an init option.
Expand All @@ -580,7 +580,7 @@ $('.selector').MonthPicker('option', 'OnAfterChooseYear', function(){ ... } );
<h3>OnAfterChooseYears</h3>
Type: function<br />
Default: null<br />
This event is triggered after the Month Picker choose years button has been clicked. As of version 2.4 <b>this</b> refers to the associated input field.
This event is triggered after the Month Picker choose years button has been clicked. As of version 2.4 this refers to the associated input field.
</p>
<p>
Supply a callback function to handle the event as an init option.
Expand Down