Skip to content

Commit

Permalink
Merge pull request flatlogic#28 from mj1856/master
Browse files Browse the repository at this point in the history
Syntax
  • Loading branch information
okendoken committed Mar 13, 2015
2 parents f6441dc + ca9cfcc commit 2cd5229
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bootstrap-tabcollapse.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
view._resizeTimeout = setTimeout(function(){
view.checkState();
}, 100);
})
});
};


Expand Down Expand Up @@ -118,10 +118,10 @@
return this.each(function () {
var $this = $(this);
var data = $this.data('bs.tabcollapse');
var options = $.extend({}, TabCollapse.DEFAULTS, $this.data(), typeof option == 'object' && option);
var options = $.extend({}, TabCollapse.DEFAULTS, $this.data(), typeof option === 'object' && option);

if (!data) $this.data('bs.tabcollapse', new TabCollapse(this, options));
})
});
};

$.fn.tabCollapse.Constructor = TabCollapse;
Expand Down

0 comments on commit 2cd5229

Please sign in to comment.