mirror of https://github.com/xwiki-labs/cryptpad
lint compliance
This commit is contained in:
parent
769a605193
commit
e3a9a2793b
|
@ -54,7 +54,7 @@
|
|||
.cp-support-recorded {
|
||||
white-space: nowrap;
|
||||
.cp-support-recorded-insert {
|
||||
margin-right: @sidebar_base-margin
|
||||
margin-right: @sidebar_base-margin;
|
||||
}
|
||||
}
|
||||
@ticket-padding: 10px;
|
||||
|
|
|
@ -698,7 +698,6 @@ define([
|
|||
console.error(obj.error);
|
||||
return void UI.warn(Messages.error);
|
||||
}
|
||||
let lines = [];
|
||||
let messages = obj.messages;
|
||||
$list.empty();
|
||||
Object.keys(messages).forEach(id => {
|
||||
|
|
|
@ -261,7 +261,7 @@ define([
|
|||
};
|
||||
let overflow = false;
|
||||
let maxWidth = $recorded.width();
|
||||
Object.keys(all).sort(sort).forEach((id, i) => {
|
||||
Object.keys(all).sort(sort).forEach(id => {
|
||||
let action = () => {
|
||||
insertText(all[id].content);
|
||||
if (typeof(recorded.onClick) === "function") { recorded.onClick(id); }
|
||||
|
|
Loading…
Reference in New Issue