()
| 197 | |
| 198 | this.transitioning = 1; |
| 199 | var complete = function() { |
| 200 | if(this.transitioning && this.options.onTransitionEnd) { |
| 201 | this.options.onTransitionEnd(); |
| 202 | } |
| 203 | $this |
| 204 | .removeClass(collapsingClass) |
| 205 | .addClass(collapseClass + ' ' + collapseInClass) |
| 206 | .height('') |
| 207 | .attr('aria-expanded', true); |
| 208 | this.transitioning = 0; |
| 209 | }; |
| 210 | if (!$transition) { |
| 211 | return complete.call(this); |
| 212 | } |
nothing calls this directly
no outgoing calls
no test coverage detected