Skip to content

Commit

Permalink
fix(ionPrefix): disableRegisterByTagName updated w/ ion- prefix for…
Browse files Browse the repository at this point in the history
… correct view history
  • Loading branch information
Adam Bradley committed Feb 21, 2014
1 parent 8847b07 commit 2494b5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/ext/angular/src/directive/ionicSideMenu.js
Expand Up @@ -17,7 +17,7 @@ angular.module('ionic.ui.sideMenu', ['ionic.service.gesture', 'ionic.service.vie

.run(['$ionicViewService', function($ionicViewService) {
// set that the side-menus directive should not animate when transitioning to it
$ionicViewService.disableRegisterByTagName('side-menus');
$ionicViewService.disableRegisterByTagName('ion-side-menus');
}])

.directive('ionSideMenus', function() {
Expand Down
2 changes: 1 addition & 1 deletion js/ext/angular/src/directive/ionicTabBar.js
Expand Up @@ -10,7 +10,7 @@ angular.module('ionic.ui.tabs', ['ionic.service.view', 'ngSanitize'])
.run(['$ionicViewService', function($ionicViewService) {
// set that the tabs directive should not animate when transitioning
// to it. Instead, the children <ion-tab> directives would animate
$ionicViewService.disableRegisterByTagName('tabs');
$ionicViewService.disableRegisterByTagName('ion-tabs');
}])

.controller('$ionicTabs', ['$scope', '$ionicViewService', function($scope, $ionicViewService) {
Expand Down

0 comments on commit 2494b5f

Please sign in to comment.