Skip to content
Snippets Groups Projects
Commit ae681f00 authored by Thomas Müller's avatar Thomas Müller
Browse files

Revert "make jshint happy"

This reverts commit a255866a.
parent 0ca6398a
No related branches found
No related tags found
No related merge requests found
...@@ -12,20 +12,17 @@ $(document).ready(function(){ ...@@ -12,20 +12,17 @@ $(document).ready(function(){
$( 'input:radio[name="adminEnableRecovery"]' ).change( $( 'input:radio[name="adminEnableRecovery"]' ).change(
function() { function() {
var recoveryStatus = $( this ).val(); var recoveryStatus = $( this ).val();
var oldStatus = (1+parseInt(recoveryStatus, 10)) % 2; var oldStatus = (1+parseInt(recoveryStatus)) % 2;
var recoveryPassword = $( '#encryptionRecoveryPassword' ).val(); var recoveryPassword = $( '#encryptionRecoveryPassword' ).val();
var confirmPassword = $( '#repeatEncryptionRecoveryPassword' ).val(); var confirmPassword = $( '#repeatEncryptionRecoveryPassword' ).val();
OC.msg.startSaving('#encryptionSetRecoveryKey .msg'); OC.msg.startSaving('#encryptionSetRecoveryKey .msg');
$.post( $.post(
OC.generateUrl('/apps/encryption/ajax/adminRecovery'), OC.generateUrl('/apps/encryption/ajax/adminRecovery')
{ adminEnableRecovery: recoveryStatus, , { adminEnableRecovery: recoveryStatus, recoveryPassword: recoveryPassword, confirmPassword: confirmPassword }
recoveryPassword: recoveryPassword, , function( result ) {
confirmPassword: confirmPassword },
function( result ) {
OC.msg.finishedSaving('#encryptionSetRecoveryKey .msg', result); OC.msg.finishedSaving('#encryptionSetRecoveryKey .msg', result);
if (result.status === "error") { if (result.status === "error") {
$('input:radio[name="adminEnableRecovery"][value="'+oldStatus.toString()+'"]') $('input:radio[name="adminEnableRecovery"][value="'+oldStatus.toString()+'"]').attr("checked", "true");
.attr("checked", "true");
} else { } else {
if (recoveryStatus === "0") { if (recoveryStatus === "0") {
$('p[name="changeRecoveryPasswordBlock"]').addClass("hidden"); $('p[name="changeRecoveryPasswordBlock"]').addClass("hidden");
...@@ -47,9 +44,9 @@ $(document).ready(function(){ ...@@ -47,9 +44,9 @@ $(document).ready(function(){
var confirmNewPassword = $('#repeatedNewEncryptionRecoveryPassword').val(); var confirmNewPassword = $('#repeatedNewEncryptionRecoveryPassword').val();
OC.msg.startSaving('#encryptionChangeRecoveryKey .msg'); OC.msg.startSaving('#encryptionChangeRecoveryKey .msg');
$.post( $.post(
OC.generateUrl('/apps/encryption/ajax/changeRecoveryPassword'), OC.generateUrl('/apps/encryption/ajax/changeRecoveryPassword')
{ oldPassword: oldRecoveryPassword, newPassword: newRecoveryPassword, confirmPassword: confirmNewPassword }, , { oldPassword: oldRecoveryPassword, newPassword: newRecoveryPassword, confirmPassword: confirmNewPassword }
function( data ) { , function( data ) {
OC.msg.finishedSaving('#encryptionChangeRecoveryKey .msg', data); OC.msg.finishedSaving('#encryptionChangeRecoveryKey .msg', data);
} }
); );
......
...@@ -4,14 +4,14 @@ ...@@ -4,14 +4,14 @@
* See the COPYING-README file. * See the COPYING-README file.
*/ */
function updatePrivateKeyPassword() { function updatePrivateKeyPasswd() {
var oldPrivateKeyPassword = $('input:password[id="oldPrivateKeyPassword"]').val(); var oldPrivateKeyPassword = $('input:password[id="oldPrivateKeyPassword"]').val();
var newPrivateKeyPassword = $('input:password[id="newPrivateKeyPassword"]').val(); var newPrivateKeyPassword = $('input:password[id="newPrivateKeyPassword"]').val();
OC.msg.startSaving('#encryption .msg'); OC.msg.startSaving('#encryption .msg');
$.post( $.post(
OC.generateUrl('/apps/encryption/ajax/updatePrivateKeyPassword'), OC.generateUrl('/apps/encryption/ajax/updatePrivateKeyPassword')
{ oldPassword: oldPrivateKeyPassword, newPassword: newPrivateKeyPassword }, , { oldPassword: oldPrivateKeyPassword, newPassword: newPrivateKeyPassword }
function( data ) { , function( data ) {
if (data.status === "error") { if (data.status === "error") {
OC.msg.finishedSaving('#encryption .msg', data); OC.msg.finishedSaving('#encryption .msg', data);
} else { } else {
...@@ -29,9 +29,9 @@ $(document).ready(function(){ ...@@ -29,9 +29,9 @@ $(document).ready(function(){
var recoveryStatus = $( this ).val(); var recoveryStatus = $( this ).val();
OC.msg.startAction('#userEnableRecovery .msg', 'Updating recovery keys. This can take some time...'); OC.msg.startAction('#userEnableRecovery .msg', 'Updating recovery keys. This can take some time...');
$.post( $.post(
OC.generateUrl('/apps/encryption/ajax/userSetRecovery'), OC.generateUrl('/apps/encryption/ajax/userSetRecovery')
{ userEnableRecovery: recoveryStatus }, , { userEnableRecovery: recoveryStatus }
function( data ) { , function( data ) {
OC.msg.finishedAction('#userEnableRecovery .msg', data); OC.msg.finishedAction('#userEnableRecovery .msg', data);
} }
); );
...@@ -48,7 +48,7 @@ $(document).ready(function(){ ...@@ -48,7 +48,7 @@ $(document).ready(function(){
if (newPrivateKeyPassword !== '' && oldPrivateKeyPassword !== '' ) { if (newPrivateKeyPassword !== '' && oldPrivateKeyPassword !== '' ) {
$('button:button[name="submitChangePrivateKeyPassword"]').removeAttr("disabled"); $('button:button[name="submitChangePrivateKeyPassword"]').removeAttr("disabled");
if(event.which === 13) { if(event.which === 13) {
updatePrivateKeyPassword(); updatePrivateKeyPasswd();
} }
} else { } else {
$('button:button[name="submitChangePrivateKeyPassword"]').attr("disabled", "true"); $('button:button[name="submitChangePrivateKeyPassword"]').attr("disabled", "true");
...@@ -56,7 +56,7 @@ $(document).ready(function(){ ...@@ -56,7 +56,7 @@ $(document).ready(function(){
}); });
$('button:button[name="submitChangePrivateKeyPassword"]').click(function() { $('button:button[name="submitChangePrivateKeyPassword"]').click(function() {
updatePrivateKeyPassword(); updatePrivateKeyPasswd();
}); });
}); });
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment