File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -352,7 +352,7 @@ class Sidebar extends BaseComponent {
352
352
353
353
// Static
354
354
355
- static _sidebarInterface ( element , config ) {
355
+ static sidebarInterface ( element , config ) {
356
356
let data = Data . getData ( element , DATA_KEY )
357
357
const _config = typeof config === 'object' && config
358
358
@@ -371,7 +371,7 @@ class Sidebar extends BaseComponent {
371
371
372
372
static jQueryInterface ( config ) {
373
373
return this . each ( function ( ) {
374
- Sidebar . _sidebarInterface ( this , config )
374
+ Sidebar . sidebarInterface ( this , config )
375
375
} )
376
376
}
377
377
}
@@ -385,7 +385,7 @@ class Sidebar extends BaseComponent {
385
385
EventHandler . on ( window , EVENT_LOAD_DATA_API , ( ) => {
386
386
// eslint-disable-next-line unicorn/prefer-spread
387
387
Array . from ( document . querySelectorAll ( SELECTOR_SIDEBAR ) ) . forEach ( element => {
388
- Sidebar . _sidebarInterface ( element )
388
+ Sidebar . sidebarInterface ( element )
389
389
} )
390
390
} )
391
391
You can’t perform that action at this time.
0 commit comments