Skip to content

Commit 2cd5229

Browse files
committed
Merge pull request #28 from mj1856/master
Syntax
2 parents f6441dc + ca9cfcc commit 2cd5229

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bootstrap-tabcollapse.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
view._resizeTimeout = setTimeout(function(){
8181
view.checkState();
8282
}, 100);
83-
})
83+
});
8484
};
8585

8686

@@ -118,10 +118,10 @@
118118
return this.each(function () {
119119
var $this = $(this);
120120
var data = $this.data('bs.tabcollapse');
121-
var options = $.extend({}, TabCollapse.DEFAULTS, $this.data(), typeof option == 'object' && option);
121+
var options = $.extend({}, TabCollapse.DEFAULTS, $this.data(), typeof option === 'object' && option);
122122

123123
if (!data) $this.data('bs.tabcollapse', new TabCollapse(this, options));
124-
})
124+
});
125125
};
126126

127127
$.fn.tabCollapse.Constructor = TabCollapse;

0 commit comments

Comments
 (0)