Squashed commit of pull request #1954
This commit is contained in:
committed by
Jakob Borg
parent
19451e0654
commit
26d52bedb3
@@ -0,0 +1,7 @@
|
||||
angular.module('syncthing.core')
|
||||
.directive('aboutModal', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'scripts/syncthing/core/views/directives/aboutModalView.html'
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,7 @@
|
||||
angular.module('syncthing.core')
|
||||
.directive('majorUpgradeModal', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'scripts/syncthing/core/views/directives/majorUpgradeModalView.html'
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,7 @@
|
||||
angular.module('syncthing.core')
|
||||
.directive('httpErrorDialog', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'scripts/syncthing/core/views/directives/messageDialogs/httpErrorDialogView.html'
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,7 @@
|
||||
angular.module('syncthing.core')
|
||||
.directive('networkErrorDialog', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'scripts/syncthing/core/views/directives/messageDialogs/networkErrorDialogView.html'
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,7 @@
|
||||
angular.module('syncthing.core')
|
||||
.directive('restartingDialog', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'scripts/syncthing/core/views/directives/messageDialogs/restartingDialogView.html'
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,7 @@
|
||||
angular.module('syncthing.core')
|
||||
.directive('shutdownDialog', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'scripts/syncthing/core/views/directives/messageDialogs/shutdownDialogView.html'
|
||||
};
|
||||
});
|
||||
@@ -0,0 +1,7 @@
|
||||
angular.module('syncthing.core')
|
||||
.directive('upgradingDialog', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'scripts/syncthing/core/views/directives/messageDialogs/upgradingDialogView.html'
|
||||
};
|
||||
});
|
||||
Reference in New Issue
Block a user