Skip to content

Commit

Permalink
Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
long2know committed Jan 19, 2016
1 parent 9f5c203 commit bb71b32
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions ui-router-tabbed-navigation/script.js
Expand Up @@ -22,7 +22,7 @@

var tabsCtrl = function ($state, $location, $filter, appStates, navigationService) {
var
vm = this,
vm = this,
initialize = function () {
vm.appStates = appStates.states;
};
Expand All @@ -45,7 +45,7 @@
'ui.router',
'ui'
]);

myApp.config(['$uibModalProvider', '$locationProvider', '$stateProvider', '$urlRouterProvider',
function ($uibModalProvider, $locationProvider, $stateProvider, $urlRouterProvider) {
$uibModalProvider.options = { animation: true, backdrop: 'static', keyboard: false };
Expand All @@ -54,7 +54,7 @@
$urlRouterProvider
.when('/', '/state1')
.otherwise("/state1");

$stateProvider
.state('tabs', {
abstract: true,
Expand All @@ -78,18 +78,18 @@
controller: function () { },
reloadOnSearch: false
})
.state('tabs.state3', {
url: 'state3',
templateUrl: 'state3.html',
controller: function () { },
reloadOnSearch: false
})
.state('tabs.state3', {
url: 'state3',
templateUrl: 'state3.html',
controller: function () { },
reloadOnSearch: false
})
.state('tabs.state4', {
url: 'state4',
templateUrl: 'state4.html',
controller: function () { },
reloadOnSearch: false
})
url: 'state4',
templateUrl: 'state4.html',
controller: function () { },
reloadOnSearch: false
})
}]);

myApp.run(['$log', 'navigationService', function ($log, navigationService) {
Expand Down

0 comments on commit bb71b32

Please sign in to comment.