Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2015-05-04 12:51:02 +0300
committerJoas Schilling <nickvergessen@owncloud.com>2015-05-04 16:04:03 +0300
commiteadc2c330c36362cb192d7a352d31b5515aa26d5 (patch)
treeed941bb9b6d9fe2938c4a43e37aeb5ba57582730 /apps/encryption/js
parent17fedc80dac7acd3d85f1f132455e94d4fd920c6 (diff)
Display the module settings in the list of the encryption modules
Diffstat (limited to 'apps/encryption/js')
-rw-r--r--apps/encryption/js/settings-personal.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/encryption/js/settings-personal.js b/apps/encryption/js/settings-personal.js
index 658ba2a86ec..fa94bea6bc5 100644
--- a/apps/encryption/js/settings-personal.js
+++ b/apps/encryption/js/settings-personal.js
@@ -12,7 +12,7 @@ OC.Encryption = {
updatePrivateKeyPassword: function () {
var oldPrivateKeyPassword = $('input:password[id="oldPrivateKeyPassword"]').val();
var newPrivateKeyPassword = $('input:password[id="newPrivateKeyPassword"]').val();
- OC.msg.startSaving('#encryption .msg');
+ OC.msg.startSaving('#ocDefaultEncryptionModule .msg');
$.post(
OC.generateUrl('/apps/encryption/ajax/updatePrivateKeyPassword'),
{
@@ -20,10 +20,10 @@ OC.Encryption = {
newPassword: newPrivateKeyPassword
}
).done(function (data) {
- OC.msg.finishedSuccess('#encryption .msg', data.message);
+ OC.msg.finishedSuccess('#ocDefaultEncryptionModule .msg', data.message);
})
.fail(function (jqXHR) {
- OC.msg.finishedError('#encryption .msg', JSON.parse(jqXHR.responseText).message);
+ OC.msg.finishedError('#ocDefaultEncryptionModule .msg', JSON.parse(jqXHR.responseText).message);
});
}
};