File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -853,7 +853,7 @@ class Calendar extends BaseComponent {
853
853
854
854
static jQueryInterface ( config ) {
855
855
return this . each ( function ( ) {
856
- const data = Calendar . getOrCreateInstance ( this )
856
+ const data = Calendar . getOrCreateInstance ( this , config )
857
857
858
858
if ( typeof config !== 'string' ) {
859
859
return
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ class DatePicker extends DateRangePicker {
96
96
97
97
static jQueryInterface ( config ) {
98
98
return this . each ( function ( ) {
99
- const data = DatePicker . getOrCreateInstance ( this )
99
+ const data = DatePicker . getOrCreateInstance ( this , config )
100
100
101
101
if ( typeof config !== 'string' ) {
102
102
return
Original file line number Diff line number Diff line change @@ -866,7 +866,7 @@ class DateRangePicker extends BaseComponent {
866
866
867
867
static jQueryInterface ( config ) {
868
868
return this . each ( function ( ) {
869
- const data = DateRangePicker . getOrCreateInstance ( this )
869
+ const data = DateRangePicker . getOrCreateInstance ( this , config )
870
870
871
871
if ( typeof config !== 'string' ) {
872
872
return
Original file line number Diff line number Diff line change @@ -484,7 +484,7 @@ class Rating extends BaseComponent {
484
484
485
485
static jQueryInterface ( config ) {
486
486
return this . each ( function ( ) {
487
- const data = Rating . getOrCreateInstance ( this )
487
+ const data = Rating . getOrCreateInstance ( this , config )
488
488
489
489
if ( typeof config !== 'string' ) {
490
490
return
Original file line number Diff line number Diff line change @@ -813,7 +813,7 @@ class TimePicker extends BaseComponent {
813
813
814
814
static jQueryInterface ( config ) {
815
815
return this . each ( function ( ) {
816
- const data = TimePicker . getOrCreateInstance ( this )
816
+ const data = TimePicker . getOrCreateInstance ( this , config )
817
817
818
818
if ( typeof config !== 'string' ) {
819
819
return
You can’t perform that action at this time.
0 commit comments