mirror of
https://github.com/octoleo/syncthing.git
synced 2025-01-22 22:58:25 +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 () {
|
.directive('editDeviceModal', function () {
|
||||||
return {
|
return {
|
||||||
restrict: 'A',
|
restrict: 'A',
|
||||||
templateUrl: 'syncthing/device//editDeviceModalView.html'
|
templateUrl: 'syncthing/device/editDeviceModalView.html'
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.device')
|
|||||||
.directive('idqrModal', function () {
|
.directive('idqrModal', function () {
|
||||||
return {
|
return {
|
||||||
restrict: 'A',
|
restrict: 'A',
|
||||||
templateUrl: 'syncthing/device//idqrModalView.html'
|
templateUrl: 'syncthing/device/idqrModalView.html'
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.folder')
|
|||||||
.directive('editFolderModal', function () {
|
.directive('editFolderModal', function () {
|
||||||
return {
|
return {
|
||||||
restrict: 'A',
|
restrict: 'A',
|
||||||
templateUrl: 'syncthing/folder//editFolderModalView.html'
|
templateUrl: 'syncthing/folder/editFolderModalView.html'
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.folder')
|
|||||||
.directive('editIgnoresModal', function () {
|
.directive('editIgnoresModal', function () {
|
||||||
return {
|
return {
|
||||||
restrict: 'A',
|
restrict: 'A',
|
||||||
templateUrl: 'syncthing/folder//editIgnoresModalView.html'
|
templateUrl: 'syncthing/folder/editIgnoresModalView.html'
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.settings')
|
|||||||
.directive('advancedSettingsModal', function () {
|
.directive('advancedSettingsModal', function () {
|
||||||
return {
|
return {
|
||||||
restrict: 'A',
|
restrict: 'A',
|
||||||
templateUrl: 'syncthing/settings//advancedSettingsModalView.html'
|
templateUrl: 'syncthing/settings/advancedSettingsModalView.html'
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.settings')
|
|||||||
.directive('settingsModal', function () {
|
.directive('settingsModal', function () {
|
||||||
return {
|
return {
|
||||||
restrict: 'A',
|
restrict: 'A',
|
||||||
templateUrl: 'syncthing/settings//settingsModalView.html'
|
templateUrl: 'syncthing/settings/settingsModalView.html'
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.transfer')
|
|||||||
.directive('failedFilesModal', function () {
|
.directive('failedFilesModal', function () {
|
||||||
return {
|
return {
|
||||||
restrict: 'A',
|
restrict: 'A',
|
||||||
templateUrl: 'syncthing/transfer//failedFilesModalView.html'
|
templateUrl: 'syncthing/transfer/failedFilesModalView.html'
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.transfer')
|
|||||||
.directive('neededFilesModal', function () {
|
.directive('neededFilesModal', function () {
|
||||||
return {
|
return {
|
||||||
restrict: 'A',
|
restrict: 'A',
|
||||||
templateUrl: 'syncthing/transfer//neededFilesModalView.html'
|
templateUrl: 'syncthing/transfer/neededFilesModalView.html'
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.usagereport')
|
|||||||
.directive('usageReportModal', function () {
|
.directive('usageReportModal', function () {
|
||||||
return {
|
return {
|
||||||
restrict: 'A',
|
restrict: 'A',
|
||||||
templateUrl: 'syncthing/usagereport//usageReportModalView.html'
|
templateUrl: 'syncthing/usagereport/usageReportModalView.html'
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
@ -2,6 +2,6 @@ angular.module('syncthing.usagereport')
|
|||||||
.directive('usageReportPreviewModal', function () {
|
.directive('usageReportPreviewModal', function () {
|
||||||
return {
|
return {
|
||||||
restrict: 'A',
|
restrict: 'A',
|
||||||
templateUrl: 'syncthing/usagereport//usageReportPreviewModalView.html'
|
templateUrl: 'syncthing/usagereport/usageReportPreviewModalView.html'
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user