diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-05-01 00:49:00 -0300 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-05-01 00:49:00 -0300 |
commit | a9ccfe06d95905d923b2871a3acd162f3d1aec1a (patch) | |
tree | 37ce114588e05053fb4f90005b9d09696de8fd0b /core | |
parent | 4518f6dc642e75f2aee386fc39f5e748859bda5c (diff) | |
download | nextcloud-server-a9ccfe06d95905d923b2871a3acd162f3d1aec1a.tar.gz nextcloud-server-a9ccfe06d95905d923b2871a3acd162f3d1aec1a.zip |
Fix some long lines in JS - JSLinut recommendation
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core')
-rw-r--r-- | core/js/login/authpicker.js | 4 | ||||
-rw-r--r-- | core/js/systemtags/systemtagsinputfield.js | 6 |
2 files changed, 8 insertions, 2 deletions
diff --git a/core/js/login/authpicker.js b/core/js/login/authpicker.js index 6d8a6bb4160..666a63da365 100644 --- a/core/js/login/authpicker.js +++ b/core/js/login/authpicker.js @@ -8,6 +8,8 @@ jQuery(document).ready(function() { $('#submit-app-token-login').click(function(e) { e.preventDefault(); - window.location.href = 'nc://' + encodeURIComponent($('#user').val()) + ':' + encodeURIComponent($('#password').val()) + '@' + encodeURIComponent($('#serverHost').val()); + window.location.href = 'nc://' + + encodeURIComponent($('#user').val()) + ':' + encodeURIComponent($('#password').val()) + + '@' + encodeURIComponent($('#serverHost').val()); }); }); diff --git a/core/js/systemtags/systemtagsinputfield.js b/core/js/systemtags/systemtagsinputfield.js index 62dae1e0a8f..ba72d486204 100644 --- a/core/js/systemtags/systemtagsinputfield.js +++ b/core/js/systemtags/systemtagsinputfield.js @@ -240,7 +240,11 @@ self.collection.fetch({ success: function(collection) { // find the tag in the collection - var model = collection.where({name: e.object.name.trim(), userVisible: true, userAssignable: true}); + var model = collection.where({ + name: e.object.name.trim(), + userVisible: true, + userAssignable: true + }); if (model.length) { model = model[0]; // the tag already exists or was already assigned, |