lint compliance

This commit is contained in:
yflory 2020-04-28 18:16:21 +02:00
parent 9467839d6c
commit 4d6d9637ff
3 changed files with 17 additions and 21 deletions

View File

@ -3673,10 +3673,10 @@ define([
var node = document.createTextNode(text);
range.insertNode(node);
for (var position = 0; position != text.length; position++) {
for (var position = 0; position !== text.length; position++) {
selection.modify("move", "right", "character");
};
}
}
};
var getSource = {};
getSource['contacts'] = function (common, sources) {
@ -3710,7 +3710,7 @@ define([
try {
insertTextAtCursor(e.originalEvent.clipboardData.getData('text'));
e.preventDefault();
} catch (e) { console.error(e); }
} catch (err) { console.error(err); }
});
// Fix backspace with "contenteditable false" children
@ -3767,14 +3767,14 @@ define([
// Get the text between the last @ before the cursor and the cursor
var extractLast = function (term, offset) {
var offset = typeof(offset) !== "undefined" ? offset : $t[0].selectionStart;
offset = typeof(offset) !== "undefined" ? offset : $t[0].selectionStart;
var startOffset = term.slice(0,offset).lastIndexOf('@');
return term.slice(startOffset+1, offset);
};
// Insert the autocomplete value in the input field
var insertValue = function (value, offset, content) {
var offset = typeof(offset) !== "undefined" ? offset : $t[0].selectionStart;
var content = content || getValue();
offset = typeof(offset) !== "undefined" ? offset : $t[0].selectionStart;
content = content || getValue();
var startOffset = content.slice(0,offset).lastIndexOf('@');
var length = offset - startOffset;
if (length <= 0) { return; }
@ -3798,7 +3798,6 @@ define([
var _extractLast = extractLast;
// Use getSelection to get the cursor position in contenteditable
extractLast = function () {
var val = getValue();
var sel = document.getSelection();
if (sel.anchorNode.nodeType !== Node.TEXT_NODE) { return; }
return _extractLast(sel.anchorNode.nodeValue, sel.anchorOffset);
@ -3832,14 +3831,14 @@ define([
var range = document.createRange();
range.setStart(next, 0);
range.setEnd(next, 0);
var sel = window.getSelection();
sel.removeAllRanges();
sel.addRange(range);
var newSel = window.getSelection();
newSel.removeAllRanges();
newSel.addRange(range);
};
// Inserting contacts into contenteditable: use mention UI
if (options.type === "contacts") {
toInsert = function (data, key) {
toInsert = function (data) {
var avatar = h('span.cp-avatar', {
contenteditable: false
});
@ -3871,7 +3870,7 @@ define([
e.preventDefault();
e.stopPropagation();
}
} catch (e) {}
} catch (err) { console.error(err); }
}
}).autocomplete({
minLength: 0,

View File

@ -265,6 +265,7 @@ define([
if (!bool && update) { onRemote(); }
};
/*
var hasChanged = function (content) {
try {
var oldValue = JSON.parse(cpNfInner.chainpad.getUserDoc());
@ -276,8 +277,9 @@ define([
} catch (e) {}
return false;
};
*/
onLocal = function (padChange) {
onLocal = function (/*padChange*/) {
if (state !== STATE.READY) { return; }
if (readOnly) { return; }

View File

@ -224,7 +224,7 @@ define([
try {
var visible = $text.autocomplete("instance").menu.activeMenu.is(':visible');
if (visible) { return; }
} catch (e) {}
} catch (err) {}
$(submit).click();
e.preventDefault();
}
@ -239,11 +239,6 @@ define([
var obj = Util.clone(Env.comments.authors[id]);
authors[obj.curvePublic] = obj;
});
for (var i = 0; i< 30; i++) {
authors['test'+i] = {
name: "Name"+i
};
}
Env.common.addMentions({
$input: $text,
contenteditable: true,
@ -336,7 +331,7 @@ define([
var name = $el.attr('data-name');
var avatarUrl = $el.attr('data-avatar');
var profile = $el.attr('data-profile');
if (!name && !avatar && !profile) {
if (!name && !avatarUrl && !profile) {
$el.remove();
return;
}