clean up some dead code and do a quick optimizing pass
This commit is contained in:
@@ -694,7 +694,7 @@ define([
|
||||
if (data.atime) {
|
||||
$d.append(h('div.cp-app-prop', [Messages.fm_lastAccess, h('br'), h('span.cp-app-prop-content', new Date(data.atime).toLocaleString())]));
|
||||
}
|
||||
|
||||
|
||||
if (common.isLoggedIn()) {
|
||||
// check the size of this file...
|
||||
var bytes = 0;
|
||||
@@ -1039,7 +1039,7 @@ define([
|
||||
present: present
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
var getLinkValue = function (initValue) {
|
||||
var val = initValue || {};
|
||||
var edit = val.edit !== undefined ? val.edit : Util.isChecked($rights.find('#cp-share-editable-true'));
|
||||
@@ -1121,7 +1121,7 @@ define([
|
||||
onClose: config.onClose,
|
||||
});
|
||||
|
||||
// Share with contacts tab
|
||||
// Share with contacts tab
|
||||
|
||||
var hasFriends = Object.keys(config.friends || {}).length !== 0;
|
||||
var onFriendShare = Util.mkEvent();
|
||||
@@ -1133,7 +1133,7 @@ define([
|
||||
|
||||
onFriendShare.reg(saveValue);
|
||||
|
||||
// XXX Don't display access rights if no contacts
|
||||
// XXX Don't display access rights if no contacts
|
||||
var contactsContent = h('div.cp-share-modal');
|
||||
$(contactsContent).append(friendsList);
|
||||
|
||||
@@ -1170,11 +1170,12 @@ define([
|
||||
}];
|
||||
|
||||
var embed = h('div.cp-share-modal', embedContent);
|
||||
var $embed = $(embed);
|
||||
|
||||
// update values for link preview when radio btns change
|
||||
$(embed).find('#cp-embed-link-preview').val(getEmbedValue());
|
||||
$embed.find('#cp-embed-link-preview').val(getEmbedValue());
|
||||
$rights.find('input[type="radio"]').on('change', function () {
|
||||
$(embed).find('#cp-embed-link-preview').val(getEmbedValue());
|
||||
$embed.find('#cp-embed-link-preview').val(getEmbedValue());
|
||||
});
|
||||
|
||||
var frameEmbed = UI.dialog.customModal(embed, {
|
||||
@@ -1207,7 +1208,7 @@ define([
|
||||
var modal = UI.dialog.tabs(tabs);
|
||||
$(modal).find('.alertify-tabs-titles').after(rights);
|
||||
|
||||
// disable edit share options if you don't have edit rights
|
||||
// disable edit share options if you don't have edit rights
|
||||
if (!hashes.editHash) {
|
||||
$rights.find('#cp-share-editable-false').attr('checked', true);
|
||||
$rights.find('#cp-share-editable-true').removeAttr('checked').attr('disabled', true);
|
||||
@@ -1282,7 +1283,7 @@ define([
|
||||
onClick: function () {
|
||||
var v = getLinkValue();
|
||||
var success = Clipboard.copy(v);
|
||||
if (success) { UI.log(Messages.shareSuccess);
|
||||
if (success) { UI.log(Messages.shareSuccess);
|
||||
}
|
||||
},
|
||||
keys: [13]
|
||||
@@ -1294,7 +1295,7 @@ define([
|
||||
onClose: config.onClose,
|
||||
});
|
||||
|
||||
// share with contacts tab
|
||||
// share with contacts tab
|
||||
var hasFriends = Object.keys(config.friends || {}).length !== 0;
|
||||
|
||||
var friendsObject = hasFriends ? createShareWithFriends(config, null, getLinkValue) : {
|
||||
@@ -1369,7 +1370,6 @@ define([
|
||||
return modal;
|
||||
};
|
||||
|
||||
|
||||
UIElements.createInviteTeamModal = function (config) {
|
||||
var common = config.common;
|
||||
var hasFriends = Object.keys(config.friends || {}).length !== 0;
|
||||
@@ -2346,7 +2346,7 @@ define([
|
||||
prettyUsage = Messages._getKey('formattedMB', [usage]);
|
||||
prettyLimit = Messages._getKey('formattedMB', [limit]);
|
||||
}
|
||||
|
||||
|
||||
if (quota < 0.8) { $usage.addClass('cp-limit-usage-normal'); }
|
||||
else if (quota < 1) { $usage.addClass('cp-limit-usage-warning'); }
|
||||
else { $usage.addClass('cp-limit-usage-above'); }
|
||||
@@ -3526,15 +3526,16 @@ define([
|
||||
if (isError) { error = setHTML(h('p.cp-password-error'), Messages.password_error); }
|
||||
var info = h('p.cp-password-info', Messages.password_info);
|
||||
var password = UI.passwordInput({placeholder: Messages.password_placeholder});
|
||||
var $password = $(password);
|
||||
var button = h('button', Messages.password_submit);
|
||||
cfg = cfg || {};
|
||||
|
||||
if (cfg.value && !isError) {
|
||||
$(password).find('.cp-password-input').val(cfg.value);
|
||||
$password.find('.cp-password-input').val(cfg.value);
|
||||
}
|
||||
|
||||
var submit = function () {
|
||||
var value = $(password).find('.cp-password-input').val();
|
||||
var value = $password.find('.cp-password-input').val();
|
||||
UI.addLoadingScreen();
|
||||
common.getSframeChannel().query('Q_PAD_PASSWORD_VALUE', value, function (err, data) {
|
||||
if (!data) {
|
||||
@@ -3542,7 +3543,7 @@ define([
|
||||
}
|
||||
});
|
||||
};
|
||||
$(password).find('.cp-password-input').on('keydown', function (e) { if (e.which === 13) { submit(); } });
|
||||
$password.find('.cp-password-input').on('keydown', function (e) { if (e.which === 13) { submit(); } });
|
||||
$(button).on('click', function () { submit(); });
|
||||
|
||||
|
||||
@@ -3556,7 +3557,7 @@ define([
|
||||
]);
|
||||
UI.errorLoadingScreen(block);
|
||||
|
||||
$(password).find('.cp-password-input').focus();
|
||||
$password.find('.cp-password-input').focus();
|
||||
};
|
||||
|
||||
var crowdfundingState = false;
|
||||
|
||||
Reference in New Issue
Block a user