Fix avatar in /pad

pull/1/head
yflory 8 years ago
parent 70c9f3df75
commit 991cb896bd

@ -1172,6 +1172,14 @@ define([
return button;
};
$(window.document).on('decryption', function (e) {
var decrypted = e.originalEvent;
if (decrypted.callback) {
var cb = decrypted.callback;
decrypted.callback = undefined;
cb();
}
});
common.avatarAllowedTypes = [
'image/png',
'image/jpeg',

@ -171,11 +171,6 @@ define([
}
};
$(window.document).on('decryption', function (e) {
var decrypted = e.originalEvent;
if (decrypted.callback) { decrypted.callback(); }
});
return DiffMd;
});

@ -91,7 +91,11 @@ define([
$(window.document).on('decryption', function (e) {
var decrypted = e.originalEvent;
if (decrypted.callback) { decrypted.callback(); }
if (decrypted.callback) {
var cb = decrypted.callback;
decrypted.callback = undefined;
cb();
}
console.log(decrypted);
$dlview.show();

Loading…
Cancel
Save