aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorFelix Nagel <info@felixnagel.com>2016-12-12 00:15:46 +0100
committerFelix Nagel <info@felixnagel.com>2017-01-25 18:29:45 +0100
commit188550faff8baefff96e36b4094ad7fd00c91c45 (patch)
tree3ebbabc4f8ecf047a1cfa03acf8a1cf2421693b9 /ui
parent00a470b435608940c4d829e91d00b587294af0eb (diff)
downloadjquery-ui-188550faff8baefff96e36b4094ad7fd00c91c45.tar.gz
jquery-ui-188550faff8baefff96e36b4094ad7fd00c91c45.zip
Calendar: Make sure option numberOfMonth could be changed after creation
Diffstat (limited to 'ui')
-rw-r--r--ui/widgets/calendar.js14
1 files changed, 13 insertions, 1 deletions
diff --git a/ui/widgets/calendar.js b/ui/widgets/calendar.js
index 256347054..4bac6c326 100644
--- a/ui/widgets/calendar.js
+++ b/ui/widgets/calendar.js
@@ -703,12 +703,16 @@ return $.widget( "ui.calendar", {
_setOptions: function( options ) {
var that = this,
+ create = false,
refresh = false,
dateAttributes = false;
$.each( options, function( key, value ) {
that._setOption( key, value );
+ if ( key === "numberOfMonths" ) {
+ create = true;
+ }
if ( key in that.refreshRelatedOptions ) {
refresh = true;
}
@@ -722,8 +726,16 @@ return $.widget( "ui.calendar", {
this.date.setAttributes( this._calendarDateOptions );
this.viewDate.setAttributes( this._calendarDateOptions );
}
- if ( refresh ) {
+ if ( create || refresh ) {
this.viewDate.setTime( this.date.date().getTime() );
+ }
+ if ( create ) {
+ this.element.empty();
+ this._removeClass( this.element, "ui-calendar-multi" );
+ this._createCalendar();
+ refresh = false;
+ }
+ if ( refresh ) {
this.refresh();
}
},