diff --git a/js/angular/directive/list.js b/js/angular/directive/list.js index bae4df316fc..5ef5413bf76 100644 --- a/js/angular/directive/list.js +++ b/js/angular/directive/list.js @@ -64,7 +64,7 @@ * ``` * *```javascript -* app.controller('MyCtrl', function($scope, $ionicLoading) { +* app.controller('MyCtrl', function($scope) { * $scope.shouldShowDelete = false; * $scope.shouldShowReorder = false; * $scope.listCanSwipe = true diff --git a/js/angular/directive/tabs.js b/js/angular/directive/tabs.js index b139c2a5819..3622161f57a 100644 --- a/js/angular/directive/tabs.js +++ b/js/angular/directive/tabs.js @@ -10,10 +10,13 @@ * Powers a multi-tabbed interface with a Tab Bar and a set of "pages" that can be tabbed * through. * - * Assign any [tabs class](/docs/components#tabs) or - * [animation class](/docs/components#animation) to the element to define + * Assign any [tabs class](/docs/components#tabs) to the element to define * its look and feel. * + * For iOS, tabs will appear at the bottom of the screen. For Android, tabs will be at the top + * of the screen, below the nav-bar. This follows each OS's design specification, but can be + * configured with the [$ionicConfigProvider](docs/api/provider/$ionicConfigProvider/). + * * See the {@link ionic.directive:ionTab} directive's documentation for more details on * individual tabs. *