lint compliance
This commit is contained in:
parent
fa06f9d413
commit
9c1eaf9c1a
@ -895,7 +895,6 @@ define([
|
|||||||
var $container = $('<span>', {'class':'limit-container'});
|
var $container = $('<span>', {'class':'limit-container'});
|
||||||
var todo;
|
var todo;
|
||||||
var updateUsage = window.updateUsage = common.notAgainForAnother(function () {
|
var updateUsage = window.updateUsage = common.notAgainForAnother(function () {
|
||||||
console.log("updating usage bar");
|
|
||||||
common.getPinnedUsage(todo);
|
common.getPinnedUsage(todo);
|
||||||
}, LIMIT_REFRESH_RATE);
|
}, LIMIT_REFRESH_RATE);
|
||||||
|
|
||||||
@ -965,21 +964,12 @@ define([
|
|||||||
};
|
};
|
||||||
|
|
||||||
setInterval(function () {
|
setInterval(function () {
|
||||||
var t = updateUsage();
|
updateUsage();
|
||||||
if (t) {
|
|
||||||
console.log("usage already updated. eligible for refresh in %sms", t);
|
|
||||||
}
|
|
||||||
}, LIMIT_REFRESH_RATE * 3);
|
}, LIMIT_REFRESH_RATE * 3);
|
||||||
|
|
||||||
updateUsage();
|
updateUsage();
|
||||||
getProxy().on('change', ['drive'], function () {
|
getProxy().on('change', ['drive'], function () {
|
||||||
var t = updateUsage();
|
updateUsage();
|
||||||
if (t) {
|
|
||||||
console.log("usage bar update throttled due to overuse." +
|
|
||||||
" Eligible for update in %sms", t);
|
|
||||||
} else {
|
|
||||||
console.log("usage bar updated");
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
cb(null, $container);
|
cb(null, $container);
|
||||||
};
|
};
|
||||||
@ -1233,18 +1223,18 @@ define([
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (decrypted.blob) {
|
if (decrypted.blob) {
|
||||||
size = decrypted.blob.size
|
size = decrypted.blob.size;
|
||||||
}
|
}
|
||||||
|
|
||||||
var sizeMb = Cryptpad.bytesToMegabytes(size);
|
var sizeMb = common.bytesToMegabytes(size);
|
||||||
|
|
||||||
var $btn = $(root).find('button');
|
var $btn = $(root).find('button');
|
||||||
$btn.addClass('btn btn-success')
|
$btn.addClass('btn btn-success')
|
||||||
.attr('type', 'download')
|
.attr('type', 'download')
|
||||||
.html(function (i, html) {
|
.html(function () {
|
||||||
var text = Messages.download_mt_button + '<br>';
|
var text = Messages.download_mt_button + '<br>';
|
||||||
if (title) {
|
if (title) {
|
||||||
text += '<b>' + Cryptpad.fixHTML(title) + '</b><br>';
|
text += '<b>' + common.fixHTML(title) + '</b><br>';
|
||||||
}
|
}
|
||||||
if (size) {
|
if (size) {
|
||||||
text += '<em>' + Messages._getKey('formattedMB', [sizeMb]) + '</em>';
|
text += '<em>' + Messages._getKey('formattedMB', [sizeMb]) + '</em>';
|
||||||
|
|||||||
@ -470,6 +470,7 @@ define([
|
|||||||
}).append($('<span>', {'class': 'drawer'}).text(Messages.printText));
|
}).append($('<span>', {'class': 'drawer'}).text(Messages.printText));
|
||||||
|
|
||||||
// TODO reenable this when it is working again
|
// TODO reenable this when it is working again
|
||||||
|
$printButton = $printButton;
|
||||||
//$drawer.append($printButton);
|
//$drawer.append($printButton);
|
||||||
|
|
||||||
var $slideOptions = $('<button>', {
|
var $slideOptions = $('<button>', {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user