Skip to content

Commit ca9cfcc

Browse files
Use strict comparison
1 parent 11dea64 commit ca9cfcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bootstrap-tabcollapse.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
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));
124124
});

0 commit comments

Comments
 (0)