gui: Reformat HTML & JS for consistent white space

(white space only change)
This commit is contained in:
Jakob Borg
2018-12-25 14:26:46 +01:00
parent 41469c5393
commit 0ac6ea6f1e
27 changed files with 252 additions and 246 deletions

View File

@@ -2,7 +2,7 @@ angular.module('syncthing.core')
.directive('selectOnClick', function ($window) {
return {
link: function (scope, element, attrs) {
element.on('click', function() {
element.on('click', function () {
var selection = $window.getSelection();
var range = document.createRange();
range.selectNodeContents(element[0]);
@@ -11,4 +11,4 @@ angular.module('syncthing.core')
});
}
};
});
});