Browse Source

remove // XXX related to translation keys

master
David Benqué 9 months ago
parent
commit
b20beee2dc
2 changed files with 3 additions and 3 deletions
  1. 2
      www/admin/inner.js
  2. 4
      www/profile/inner.js

2
www/admin/inner.js

@ -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',

4
www/profile/inner.js

@ -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…
Cancel
Save