File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 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 {
853853
854854 static jQueryInterface ( config ) {
855855 return this . each ( function ( ) {
856- const data = Calendar . getOrCreateInstance ( this )
856+ const data = Calendar . getOrCreateInstance ( this , config )
857857
858858 if ( typeof config !== 'string' ) {
859859 return
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ class DatePicker extends DateRangePicker {
9696
9797 static jQueryInterface ( config ) {
9898 return this . each ( function ( ) {
99- const data = DatePicker . getOrCreateInstance ( this )
99+ const data = DatePicker . getOrCreateInstance ( this , config )
100100
101101 if ( typeof config !== 'string' ) {
102102 return
Original file line number Diff line number Diff line change @@ -866,7 +866,7 @@ class DateRangePicker extends BaseComponent {
866866
867867 static jQueryInterface ( config ) {
868868 return this . each ( function ( ) {
869- const data = DateRangePicker . getOrCreateInstance ( this )
869+ const data = DateRangePicker . getOrCreateInstance ( this , config )
870870
871871 if ( typeof config !== 'string' ) {
872872 return
Original file line number Diff line number Diff line change @@ -484,7 +484,7 @@ class Rating extends BaseComponent {
484484
485485 static jQueryInterface ( config ) {
486486 return this . each ( function ( ) {
487- const data = Rating . getOrCreateInstance ( this )
487+ const data = Rating . getOrCreateInstance ( this , config )
488488
489489 if ( typeof config !== 'string' ) {
490490 return
Original file line number Diff line number Diff line change @@ -813,7 +813,7 @@ class TimePicker extends BaseComponent {
813813
814814 static jQueryInterface ( config ) {
815815 return this . each ( function ( ) {
816- const data = TimePicker . getOrCreateInstance ( this )
816+ const data = TimePicker . getOrCreateInstance ( this , config )
817817
818818 if ( typeof config !== 'string' ) {
819819 return
You can’t perform that action at this time.
0 commit comments