File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -38,12 +38,12 @@ define([
38
38
const Default = {
39
39
toggle : true ,
40
40
parent : null
41
- }
41
+ } ;
42
42
43
43
const DefaultType = {
44
44
toggle : 'boolean' ,
45
45
parent : '(null|element)'
46
- }
46
+ } ;
47
47
48
48
const EVENT_SHOW = `show${ EVENT_KEY } ` ;
49
49
const EVENT_SHOWN = `shown${ EVENT_KEY } ` ;
@@ -242,10 +242,10 @@ define([
242
242
this . _isTransitioning = true ;
243
243
244
244
const complete = ( ) => {
245
- this . _isTransitioning = false
246
- this . _element . classList . remove ( CLASS_NAME_COLLAPSING )
247
- this . _element . classList . add ( CLASS_NAME_COLLAPSE )
248
- EventHandler . trigger ( this . _element , EVENT_HIDDEN )
245
+ this . _isTransitioning = false ;
246
+ this . _element . classList . remove ( CLASS_NAME_COLLAPSING ) ;
247
+ this . _element . classList . add ( CLASS_NAME_COLLAPSE ) ;
248
+ EventHandler . trigger ( this . _element , EVENT_HIDDEN ) ;
249
249
}
250
250
251
251
this . _element . style [ dimension ] = '' ;
Original file line number Diff line number Diff line change @@ -128,10 +128,10 @@ define([
128
128
const complete = ( ) => {
129
129
EventHandler . trigger ( previous , EVENT_HIDDEN , {
130
130
relatedTarget : this . _element
131
- } )
131
+ } ) ;
132
132
EventHandler . trigger ( this . _element , EVENT_SHOWN , {
133
133
relatedTarget : previous
134
- } )
134
+ } ) ;
135
135
}
136
136
137
137
if ( target ) {
You can’t perform that action at this time.
0 commit comments