aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_encryption
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-06-28 12:26:09 +0200
committerMorris Jobke <hey@morrisjobke.de>2014-06-28 12:26:09 +0200
commitd5462fdb50bc9f1d4726369b8922d34f33405d14 (patch)
tree8996684f6e31d7190c582abe616b71fb7ae548fc /apps/files_encryption
parentcec20d504902894d71b48182f503c6c1f4da1fbc (diff)
parentb7cb4f5a635f62d83c81e60bebd8c8a2440067d5 (diff)
downloadnextcloud-server-d5462fdb50bc9f1d4726369b8922d34f33405d14.tar.gz
nextcloud-server-d5462fdb50bc9f1d4726369b8922d34f33405d14.zip
Merge pull request #9265 from owncloud/fix-whitespace
fix trailing whitespace noted by Scrutinizer
Diffstat (limited to 'apps/files_encryption')
-rw-r--r--apps/files_encryption/js/settings-personal.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/files_encryption/js/settings-personal.js b/apps/files_encryption/js/settings-personal.js
index e16519c3c98..f857c2c9f05 100644
--- a/apps/files_encryption/js/settings-personal.js
+++ b/apps/files_encryption/js/settings-personal.js
@@ -24,7 +24,7 @@ function updatePrivateKeyPasswd() {
$(document).ready(function(){
// Trigger ajax on recoveryAdmin status change
- $( 'input:radio[name="userEnableRecovery"]' ).change(
+ $( 'input:radio[name="userEnableRecovery"]' ).change(
function() {
// Hide feedback messages in case they're already visible
@@ -33,7 +33,7 @@ $(document).ready(function(){
var recoveryStatus = $( this ).val();
- $.post(
+ $.post(
OC.filePath( 'files_encryption', 'ajax', 'userrecovery.php' )
, { userEnableRecovery: recoveryStatus }
, function( data ) {
@@ -49,7 +49,7 @@ $(document).ready(function(){
}
);
- $("#encryptAll").click(
+ $("#encryptAll").click(
function(){
// Hide feedback messages in case they're already visible
@@ -59,7 +59,7 @@ $(document).ready(function(){
var userPassword = $( '#userPassword' ).val();
var encryptAll = $( '#encryptAll' ).val();
- $.post(
+ $.post(
OC.filePath( 'files_encryption', 'ajax', 'encryptall.php' )
, { encryptAll: encryptAll, userPassword: userPassword }
, function( data ) {