We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5602982 + 5ab697f commit 3684709Copy full SHA for 3684709
1 file changed
js/angular/controller/tabsController.js
@@ -35,7 +35,7 @@ function($scope, $element, $ionicHistory) {
35
self.deselect(tab);
36
//Try to select a new tab if we're removing a tab
37
if (self.tabs.length === 1) {
38
- //do nothing if there are no other tabs to select
+ //Do nothing if there are no other tabs to select
39
} else {
40
//Select previous tab if it's the last tab, else select next tab
41
var newTabIndex = tabIndex === self.tabs.length - 1 ? tabIndex - 1 : tabIndex + 1;
0 commit comments