fixing mulitple loading controllers
This commit is contained in:
parent
43fa9e69f8
commit
a000c8e6ae
|
@ -593,7 +593,7 @@ a:hover, a:focus {
|
|||
background-color: #e74c3c;
|
||||
border-radius: 5px;
|
||||
display: block;
|
||||
padding: 30px 20px;
|
||||
padding: 60px 20px;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
@ -112,15 +112,6 @@ app.config(['$stateProvider', '$urlRouterProvider', 'localStorageServiceProvider
|
|||
}
|
||||
}
|
||||
})
|
||||
.state('app.websites', {
|
||||
url: 'websites',
|
||||
views: {
|
||||
'content@': {
|
||||
templateUrl: 'templates/websites.html',
|
||||
controller: 'websiteCtrl as vm',
|
||||
}
|
||||
}
|
||||
})
|
||||
.state('app.dns', {
|
||||
url: 'dns',
|
||||
views: {
|
||||
|
|
|
@ -55,7 +55,6 @@ app.directive('fileTree', [function () {
|
|||
return {
|
||||
restrict: 'EA',
|
||||
templateUrl: '/templates/widgets/filetree.html',
|
||||
controller: 'websiteCtrl as vm'
|
||||
};
|
||||
}]);
|
||||
|
||||
|
@ -63,7 +62,6 @@ app.directive('notificationBar', [function () {
|
|||
return {
|
||||
restrict: 'EA',
|
||||
templateUrl: '/templates/widgets/website-notification-bar.html',
|
||||
controller: 'websiteCtrl as vm'
|
||||
};
|
||||
}]);
|
||||
|
||||
|
@ -88,9 +86,6 @@ app.controller('websiteCtrl', [
|
|||
return r.verifiedAt || r.mode;
|
||||
}
|
||||
|
||||
// vm.selectedShow = websitesService.find($stateParams.id);
|
||||
// vm.shows = websitesService.list();
|
||||
|
||||
Auth.api = function (apiname, opts) {
|
||||
var els = [];
|
||||
|
||||
|
@ -714,11 +709,6 @@ app.controller('websiteCtrl', [
|
|||
});
|
||||
};
|
||||
|
||||
vm.websiteSelected = function (x) {
|
||||
vm.selectedShow = x;
|
||||
debugger;
|
||||
};
|
||||
|
||||
//vm.getDomains();
|
||||
Auth.api('domains.list', {}).then(function (els) {
|
||||
// console.log('[init] domains.list els:');
|
||||
|
@ -726,7 +716,6 @@ app.controller('websiteCtrl', [
|
|||
vm.domains = els;
|
||||
$scope.domain = vm.domains;
|
||||
});
|
||||
console.log('asdfasdfa')
|
||||
vm.listSites();
|
||||
|
||||
vm.triggerDropdown = function() {
|
||||
|
|
Loading…
Reference in New Issue