aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src
diff options
context:
space:
mode:
authorGravatar KillyMXI2017-06-02 19:07:56 +0300
committerGravatar Vitaly Takmazov2017-06-03 15:08:20 +0300
commit7817d34a3f012f6c2cd446b70f97d6dcc72e6170 (patch)
treec91b1f4b0c734c8065772341ef2b77f5c27c7afe /juick-www/src
parent1fc31d9d94696be3a3c34e2652ad90ee95f76481 (diff)
eslint rules
Diffstat (limited to 'juick-www/src')
-rw-r--r--juick-www/src/main/js/killy/index.js26
-rw-r--r--juick-www/src/main/static/scripts.js12
2 files changed, 19 insertions, 19 deletions
diff --git a/juick-www/src/main/js/killy/index.js b/juick-www/src/main/js/killy/index.js
index 4d2331b6..bb8e21f9 100644
--- a/juick-www/src/main/js/killy/index.js
+++ b/juick-www/src/main/js/killy/index.js
@@ -8,18 +8,18 @@ function insertAfter(newNode, referenceNode) {
}
function moveAll(fromNode, toNode) {
- for (let c; (c = fromNode.firstChild) != null; ) { toNode.appendChild(c); }
+ for (let c; c = fromNode.firstChild; ) { toNode.appendChild(c); }
}
function removeAllFrom(fromNode) {
- for (let c; (c = fromNode.lastChild) != null; ) { fromNode.removeChild(c); }
+ for (let c; c = fromNode.lastChild; ) { fromNode.removeChild(c); }
}
function turnIntoCts(node, makeNodeCallback) {
node.onclick = function(e){
e.preventDefault();
let newNode = makeNodeCallback();
- if(newNode !== node) {
+ if (newNode !== node) {
removeAllFrom(node);
moveAll(newNode, node);
node.className = newNode.className;
@@ -161,7 +161,7 @@ function getEmbedableLinkTypes() {
return wrapIntoTag(makeIframe('//player.vimeo.com/video/' + reResult[1], 640, 360), 'div', 'vimeo');
}
}
- ]
+ ];
}
function embedLink(aNode, linkTypes, container, alwaysCts, afterNode) {
@@ -175,7 +175,7 @@ function embedLink(aNode, linkTypes, container, alwaysCts, afterNode) {
if (reResult !== null) {
if ((linkType.match !== undefined) && (linkType.match(aNode, reResult) === false)) { return false; }
let newNode;
- let isCts = alwaysCts /* || TODO user click-to-show setting */;
+ let isCts = alwaysCts; /* || TODO user click-to-show setting */
if (isCts) {
let linkTitle = (linkType.makeTitle !== undefined) ? linkType.makeTitle(aNode, reResult) : naiveEllipsis(aNode.href, 55);
newNode = makeCts(() => linkType.makeNode(aNode, reResult, newNode), 'Click to show: ' + linkTitle);
@@ -240,7 +240,7 @@ function embedLinksToX(x, beforeNodeSelector, allLinksSelector, ctsUsers, ctsTag
}
function embedLinksToArticles() {
- let ctsUsers = [], ctsTags = [] // TODO click-to-show users and tags
+ let ctsUsers = [], ctsTags = []; // TODO click-to-show users and tags
let beforeNodeSelector = 'nav.l';
let allLinksSelector = 'p:not(.ir) a, pre a';
Array.from(document.querySelectorAll('#content > article')).forEach(article => {
@@ -249,7 +249,7 @@ function embedLinksToArticles() {
}
function embedLinksToPost() {
- let ctsUsers = [], ctsTags = [] // TODO click-to-show users and tags
+ let ctsUsers = [], ctsTags = []; // TODO click-to-show users and tags
let beforeNodeSelector = '.msg-txt + *';
let allLinksSelector = '.msg-txt a';
Array.from(document.querySelectorAll('#content .msg-cont')).forEach(msg => {
@@ -258,9 +258,9 @@ function embedLinksToPost() {
}
exports.embed = function() {
- if (document.querySelectorAll('#content > article').length) {
- embedLinksToArticles();
- } else {
- embedLinksToPost();
- }
-}
+ if (document.querySelectorAll('#content > article').length) {
+ embedLinksToArticles();
+ } else {
+ embedLinksToPost();
+ }
+};
diff --git a/juick-www/src/main/static/scripts.js b/juick-www/src/main/static/scripts.js
index 3951bfae..7de14b34 100644
--- a/juick-www/src/main/static/scripts.js
+++ b/juick-www/src/main/static/scripts.js
@@ -19,9 +19,9 @@ var ws,
function initWS() {
var content = document.getElementById('content');
- if (!content) { return }
+ if (!content) { return; }
var pageMID = content.getAttribute('data-mid');
- if (!pageMID) { return }
+ if (!pageMID) { return; }
var url = (window.location.protocol === 'https:' ? 'wss' : 'ws') + ':'
+ (typeof juickDebug !== 'undefined' ?
@@ -158,7 +158,7 @@ function wsIncomingReply(msg) {
if (isTreeMode() && (msg.replyto > 0)) {
var p = document.getElementById(msg.replyto);
var m = parseInt(p.style.marginLeft) + 20;
- while (p.nextElementSibling && (parseInt(p.nextElementSibling.style.marginLeft) >= m)) p = p.nextElementSibling;
+ while (p.nextElementSibling && (parseInt(p.nextElementSibling.style.marginLeft) >= m)) { p = p.nextElementSibling; }
li.style.marginLeft = m + 'px';
p.parentNode.insertBefore(li, p.nextSibling);
} else {
@@ -231,7 +231,7 @@ function newMessage() {
function showMoreReplies(el, id) {
var foldedReplies = el.closest('li').querySelector('.msg-comments');
- if (!foldedReplies) { return }
+ if (!foldedReplies) { return; }
foldedReplies.style.display = 'none';
var replies = document.querySelectorAll('#replies>li'),
@@ -383,7 +383,7 @@ function unfoldReply() {
var anchor = window.location.hash.substring(1);
if ((0 + anchor) > 0) {
var el = document.getElementById(anchor);
- if (!el) { return }
+ if (!el) { return; }
while (el.style.display === 'none') {
el = el.previousElementSibling;
}
@@ -444,7 +444,7 @@ function closeDialog() {
function openSocialWindow(a) {
var w = window.open(a.href, 'juickshare', 'width=640,height=400');
- if (window.focus) w.focus();
+ if (window.focus) { w.focus(); }
return false;
}