Squashed commit of pull request #1954

This commit is contained in:
Dennis Wilson
2015-08-02 08:27:05 +02:00
committed by Jakob Borg
parent 19451e0654
commit 26d52bedb3
44 changed files with 934 additions and 800 deletions

View File

@@ -0,0 +1,7 @@
angular.module('syncthing.core')
.directive('aboutModal', function () {
return {
restrict: 'A',
templateUrl: 'scripts/syncthing/core/views/directives/aboutModalView.html'
};
});

View File

@@ -0,0 +1,7 @@
angular.module('syncthing.core')
.directive('majorUpgradeModal', function () {
return {
restrict: 'A',
templateUrl: 'scripts/syncthing/core/views/directives/majorUpgradeModalView.html'
};
});

View File

@@ -0,0 +1,7 @@
angular.module('syncthing.core')
.directive('httpErrorDialog', function () {
return {
restrict: 'A',
templateUrl: 'scripts/syncthing/core/views/directives/messageDialogs/httpErrorDialogView.html'
};
});

View File

@@ -0,0 +1,7 @@
angular.module('syncthing.core')
.directive('networkErrorDialog', function () {
return {
restrict: 'A',
templateUrl: 'scripts/syncthing/core/views/directives/messageDialogs/networkErrorDialogView.html'
};
});

View File

@@ -0,0 +1,7 @@
angular.module('syncthing.core')
.directive('restartingDialog', function () {
return {
restrict: 'A',
templateUrl: 'scripts/syncthing/core/views/directives/messageDialogs/restartingDialogView.html'
};
});

View File

@@ -0,0 +1,7 @@
angular.module('syncthing.core')
.directive('shutdownDialog', function () {
return {
restrict: 'A',
templateUrl: 'scripts/syncthing/core/views/directives/messageDialogs/shutdownDialogView.html'
};
});

View File

@@ -0,0 +1,7 @@
angular.module('syncthing.core')
.directive('upgradingDialog', function () {
return {
restrict: 'A',
templateUrl: 'scripts/syncthing/core/views/directives/messageDialogs/upgradingDialogView.html'
};
});