Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
chore(accordion): clean up code style
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleycho committed Sep 1, 2015
1 parent 44fd16c commit 3b35349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/accordion/accordion.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ angular.module('ui.bootstrap.accordion', ['ui.bootstrap.collapse'])
// This is called from the accordion-group directive when to remove itself
this.removeGroup = function(group) {
var index = this.groups.indexOf(group);
if ( index !== -1 ) {
if (index !== -1) {
this.groups.splice(index, 1);
}
};
Expand Down

0 comments on commit 3b35349

Please sign in to comment.