Merge pull request #2146 from uok/double

Remove double slashes in directives (fixes #2143)
This commit is contained in:
Audrius Butkevicius 2015-08-10 11:45:03 +01:00
commit 3704c41dda
10 changed files with 10 additions and 10 deletions

View File

@ -2,6 +2,6 @@ angular.module('syncthing.device')
.directive('editDeviceModal', function () {
return {
restrict: 'A',
templateUrl: 'syncthing/device//editDeviceModalView.html'
templateUrl: 'syncthing/device/editDeviceModalView.html'
};
});

View File

@ -2,6 +2,6 @@ angular.module('syncthing.device')
.directive('idqrModal', function () {
return {
restrict: 'A',
templateUrl: 'syncthing/device//idqrModalView.html'
templateUrl: 'syncthing/device/idqrModalView.html'
};
});

View File

@ -2,6 +2,6 @@ angular.module('syncthing.folder')
.directive('editFolderModal', function () {
return {
restrict: 'A',
templateUrl: 'syncthing/folder//editFolderModalView.html'
templateUrl: 'syncthing/folder/editFolderModalView.html'
};
});

View File

@ -2,6 +2,6 @@ angular.module('syncthing.folder')
.directive('editIgnoresModal', function () {
return {
restrict: 'A',
templateUrl: 'syncthing/folder//editIgnoresModalView.html'
templateUrl: 'syncthing/folder/editIgnoresModalView.html'
};
});

View File

@ -2,6 +2,6 @@ angular.module('syncthing.settings')
.directive('advancedSettingsModal', function () {
return {
restrict: 'A',
templateUrl: 'syncthing/settings//advancedSettingsModalView.html'
templateUrl: 'syncthing/settings/advancedSettingsModalView.html'
};
});

View File

@ -2,6 +2,6 @@ angular.module('syncthing.settings')
.directive('settingsModal', function () {
return {
restrict: 'A',
templateUrl: 'syncthing/settings//settingsModalView.html'
templateUrl: 'syncthing/settings/settingsModalView.html'
};
});

View File

@ -2,6 +2,6 @@ angular.module('syncthing.transfer')
.directive('failedFilesModal', function () {
return {
restrict: 'A',
templateUrl: 'syncthing/transfer//failedFilesModalView.html'
templateUrl: 'syncthing/transfer/failedFilesModalView.html'
};
});

View File

@ -2,6 +2,6 @@ angular.module('syncthing.transfer')
.directive('neededFilesModal', function () {
return {
restrict: 'A',
templateUrl: 'syncthing/transfer//neededFilesModalView.html'
templateUrl: 'syncthing/transfer/neededFilesModalView.html'
};
});

View File

@ -2,6 +2,6 @@ angular.module('syncthing.usagereport')
.directive('usageReportModal', function () {
return {
restrict: 'A',
templateUrl: 'syncthing/usagereport//usageReportModalView.html'
templateUrl: 'syncthing/usagereport/usageReportModalView.html'
};
});

View File

@ -2,6 +2,6 @@ angular.module('syncthing.usagereport')
.directive('usageReportPreviewModal', function () {
return {
restrict: 'A',
templateUrl: 'syncthing/usagereport//usageReportPreviewModalView.html'
templateUrl: 'syncthing/usagereport/usageReportPreviewModalView.html'
};
});