mirror of
https://github.com/octoleo/syncthing.git
synced 2024-11-09 14:50:56 +00:00
Merge pull request #2146 from uok/double
Remove double slashes in directives (fixes #2143)
This commit is contained in:
commit
3704c41dda
@ -2,6 +2,6 @@ angular.module('syncthing.device')
|
||||
.directive('editDeviceModal', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'syncthing/device//editDeviceModalView.html'
|
||||
templateUrl: 'syncthing/device/editDeviceModalView.html'
|
||||
};
|
||||
});
|
||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.device')
|
||||
.directive('idqrModal', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'syncthing/device//idqrModalView.html'
|
||||
templateUrl: 'syncthing/device/idqrModalView.html'
|
||||
};
|
||||
});
|
||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.folder')
|
||||
.directive('editFolderModal', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'syncthing/folder//editFolderModalView.html'
|
||||
templateUrl: 'syncthing/folder/editFolderModalView.html'
|
||||
};
|
||||
});
|
||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.folder')
|
||||
.directive('editIgnoresModal', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'syncthing/folder//editIgnoresModalView.html'
|
||||
templateUrl: 'syncthing/folder/editIgnoresModalView.html'
|
||||
};
|
||||
});
|
||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.settings')
|
||||
.directive('advancedSettingsModal', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'syncthing/settings//advancedSettingsModalView.html'
|
||||
templateUrl: 'syncthing/settings/advancedSettingsModalView.html'
|
||||
};
|
||||
});
|
||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.settings')
|
||||
.directive('settingsModal', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'syncthing/settings//settingsModalView.html'
|
||||
templateUrl: 'syncthing/settings/settingsModalView.html'
|
||||
};
|
||||
});
|
||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.transfer')
|
||||
.directive('failedFilesModal', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'syncthing/transfer//failedFilesModalView.html'
|
||||
templateUrl: 'syncthing/transfer/failedFilesModalView.html'
|
||||
};
|
||||
});
|
||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.transfer')
|
||||
.directive('neededFilesModal', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'syncthing/transfer//neededFilesModalView.html'
|
||||
templateUrl: 'syncthing/transfer/neededFilesModalView.html'
|
||||
};
|
||||
});
|
||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.usagereport')
|
||||
.directive('usageReportModal', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'syncthing/usagereport//usageReportModalView.html'
|
||||
templateUrl: 'syncthing/usagereport/usageReportModalView.html'
|
||||
};
|
||||
});
|
||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.usagereport')
|
||||
.directive('usageReportPreviewModal', function () {
|
||||
return {
|
||||
restrict: 'A',
|
||||
templateUrl: 'syncthing/usagereport//usageReportPreviewModalView.html'
|
||||
templateUrl: 'syncthing/usagereport/usageReportPreviewModalView.html'
|
||||
};
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user