mirror of https://github.com/xwiki-labs/cryptpad
remove // XXX related to translation keys
This commit is contained in:
parent
67c933622d
commit
b20beee2dc
|
@ -121,7 +121,7 @@ define([
|
|||
return $div;
|
||||
};
|
||||
create['open-files'] = function () {
|
||||
var key = 'open-files'; // XXX
|
||||
var key = 'open-files';
|
||||
var $div = makeBlock(key);
|
||||
sFrameChan.query('Q_ADMIN_RPC', {
|
||||
cmd: 'GET_FILE_DESCRIPTOR_COUNT',
|
||||
|
|
|
@ -459,7 +459,7 @@ define([
|
|||
|
||||
var addPublicKey = function ($container) {
|
||||
if (!APP.readOnly) { return; }
|
||||
if (!Messages.profile_copyKey) { return; } // XXX
|
||||
if (!Messages.profile_copyKey) { return; }
|
||||
|
||||
var $div = $(h('div.cp-sidebarlayout-element')).appendTo($container);
|
||||
APP.$edPublic = $('<button>', {
|
||||
|
@ -473,7 +473,7 @@ define([
|
|||
};
|
||||
var setPublicKeyButton = function (data) {
|
||||
if (!data.edPublic || APP.getEdPublic || !APP.readOnly) { return; }
|
||||
if (!Messages.profile_copyKey) { return; } // XXX
|
||||
if (!Messages.profile_copyKey) { return; }
|
||||
APP.$edPublic.show();
|
||||
APP.getEdPublic = function () {
|
||||
var metadataMgr = APP.common.getMetadataMgr();
|
||||
|
|
Loading…
Reference in New Issue