diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js
index 2e4f7d9ae..a96fb7101 100644
--- a/builds/4chan-X.user.js
+++ b/builds/4chan-X.user.js
@@ -347,6 +347,7 @@
Array.prototype.indexOf = function(object) {
var i;
+
i = this.length;
while (i--) {
if (this[i] === object) {
@@ -365,6 +366,7 @@
$.extend = function(object, properties) {
var key, val;
+
for (key in properties) {
val = properties[key];
if (!properties.hasOwnProperty(key)) {
@@ -382,6 +384,7 @@
$.ready = function(fc) {
var cb;
+
if (d.readyState !== 'loading') {
$.queueTask(fc);
return;
@@ -395,6 +398,7 @@
$.formData = function(form) {
var fd, key, val;
+
if (form instanceof HTMLFormElement) {
return new FormData(form);
}
@@ -414,6 +418,7 @@
$.extend = function(object, properties) {
var key, val;
+
for (key in properties) {
val = properties[key];
object[key] = val;
@@ -422,9 +427,11 @@
$.ajax = (function() {
var lastModified;
+
lastModified = {};
return function(url, options, extra) {
var form, r, sync, type, upCallbacks, whenModified;
+
if (extra == null) {
extra = {};
}
@@ -447,9 +454,11 @@
$.cache = (function() {
var reqs;
+
reqs = {};
return function(url, cb, options) {
var err, req, rm;
+
if (req = reqs[url]) {
if (req.readyState === 4) {
cb.call(req, req.evt);
@@ -469,6 +478,7 @@
}
$.on(req, 'load', function(e) {
var _i, _len, _ref;
+
_ref = this.callbacks;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
cb = _ref[_i];
@@ -504,6 +514,7 @@
$.addStyle = function(css, id) {
var style;
+
style = $.el('style', {
id: id,
textContent: css
@@ -550,6 +561,7 @@
} else {
return function(el) {
var _ref;
+
return (_ref = el.parentNode) != null ? _ref.removeChild(el) : void 0;
};
}
@@ -557,6 +569,7 @@
$.rmAll = function(root) {
var node;
+
while (node = root.firstChild) {
root.removeChild(node);
}
@@ -572,6 +585,7 @@
$.nodes = function(nodes) {
var frag, node, _i, _len;
+
if (!(nodes instanceof Array)) {
return nodes;
}
@@ -605,6 +619,7 @@
$.el = function(tag, properties) {
var el;
+
el = d.createElement(tag);
if (properties) {
$.extend(el, properties);
@@ -614,6 +629,7 @@
$.on = function(el, events, handler) {
var event, _i, _len, _ref;
+
_ref = events.split(' ');
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
event = _ref[_i];
@@ -623,6 +639,7 @@
$.off = function(el, events, handler) {
var event, _i, _len, _ref;
+
_ref = events.split(' ');
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
event = _ref[_i];
@@ -644,6 +661,7 @@
$.debounce = function(wait, fn) {
var args, exec, lastCall, that, timeout;
+
lastCall = 0;
timeout = null;
that = null;
@@ -665,9 +683,11 @@
$.queueTask = (function() {
var execTask, taskChannel, taskQueue;
+
taskQueue = [];
execTask = function() {
var args, func, task;
+
task = taskQueue.shift();
func = task[0];
args = Array.prototype.slice.call(task, 1);
@@ -690,6 +710,7 @@
$.globalEval = function(code) {
var script;
+
script = $.el('script', {
textContent: code
});
@@ -699,6 +720,7 @@
$.bytesToString = function(size) {
var unit;
+
unit = 0;
while (size >= 1024) {
size /= 1024;
@@ -714,6 +736,7 @@
$.item = function(key, val) {
var item;
+
item = {};
item[key] = val;
return item;
@@ -724,6 +747,7 @@
$.sync = (function() {
$.on(window, 'storage', function(e) {
var cb;
+
if (cb = $.syncing[e.key]) {
return cb(JSON.parse(e.newValue));
}
@@ -735,6 +759,7 @@
$["delete"] = function(keys) {
var key, _i, _len;
+
if (!(keys instanceof Array)) {
keys = [keys];
}
@@ -748,6 +773,7 @@
$.get = function(key, val, cb) {
var items;
+
if (typeof cb === 'function') {
items = $.item(key, val);
} else {
@@ -766,6 +792,7 @@
$.set = (function() {
var set;
+
set = function(key, val) {
key = g.NAMESPACE + key;
val = JSON.stringify(val);
@@ -776,6 +803,7 @@
};
return function(keys, val) {
var key;
+
if (typeof keys === 'string') {
set(keys, val);
return;
@@ -843,6 +871,7 @@
function Post(root, thread, board, that) {
var capcode, date, email, flag, info, name, post, subject, tripcode, uniqueID;
+
this.thread = thread;
this.board = board;
if (that == null) {
@@ -918,6 +947,7 @@
Post.prototype.parseComment = function() {
var bq, i, node, nodes, text;
+
bq = this.nodes.comment.cloneNode(true);
nodes = $$('.abbr, .capcodeReplies, .exif, b', bq);
i = 0;
@@ -935,6 +965,7 @@
Post.prototype.parseQuotes = function() {
var quotelink, _i, _len, _ref;
+
this.quotes = [];
_ref = $$('.quotelink', this.nodes.comment);
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -945,6 +976,7 @@
Post.prototype.parseQuote = function(quotelink) {
var fullID, match;
+
if (!(match = quotelink.href.match(/boards\.4chan\.org\/([^\/]+)\/res\/\d+#p(\d+)$/))) {
return;
}
@@ -960,6 +992,7 @@
Post.prototype.parseFile = function(that) {
var alt, anchor, fileEl, fileInfo, size, thumb, unit;
+
if (!((fileEl = $('.file', this.nodes.post)) && (thumb = $('img[data-md5]', fileEl)))) {
return;
}
@@ -990,6 +1023,7 @@
Post.prototype.kill = function(file, now) {
var clone, quotelink, strong, _i, _j, _len, _len1, _ref, _ref1;
+
now || (now = new Date());
if (file) {
if (this.file.isDead) {
@@ -1038,6 +1072,7 @@
Post.prototype.resurrect = function() {
var clone, quotelink, strong, _i, _j, _len, _len1, _ref, _ref1;
+
delete this.isDead;
delete this.timeOfDeath;
$.rmClass(this.nodes.root, 'deleted-post');
@@ -1071,6 +1106,7 @@
Post.prototype.rmClone = function(index) {
var clone, _i, _len, _ref;
+
this.clones.splice(index, 1);
_ref = this.clones.slice(index);
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -1088,6 +1124,7 @@
function Clone(origin, context) {
var file, info, inline, inlined, key, nodes, post, root, val, _i, _j, _k, _len, _len1, _len2, _ref, _ref1, _ref2, _ref3;
+
this.origin = origin;
this.context = context;
_ref = ['ID', 'fullID', 'board', 'thread', 'info', 'quotes', 'isReply'];
@@ -1175,6 +1212,7 @@
function DataBoard(key, sync, dontClean) {
var init,
_this = this;
+
this.key = key;
this.data = Conf[key];
$.sync(key, this.onSync.bind(this));
@@ -1197,6 +1235,7 @@
DataBoard.prototype["delete"] = function(_arg) {
var boardID, postID, threadID;
+
boardID = _arg.boardID, threadID = _arg.threadID, postID = _arg.postID;
if (postID) {
delete this.data.boards[boardID][threadID][postID];
@@ -1217,6 +1256,7 @@
DataBoard.prototype.deleteIfEmpty = function(_arg) {
var boardID, threadID;
+
boardID = _arg.boardID, threadID = _arg.threadID;
if (threadID) {
if (!Object.keys(this.data.boards[boardID][threadID]).length) {
@@ -1232,6 +1272,7 @@
DataBoard.prototype.set = function(_arg) {
var boardID, postID, threadID, val, _base, _base1, _base2;
+
boardID = _arg.boardID, threadID = _arg.threadID, postID = _arg.postID, val = _arg.val;
if (postID !== void 0) {
((_base = ((_base1 = this.data.boards)[boardID] || (_base1[boardID] = {})))[threadID] || (_base[threadID] = {}))[postID] = val;
@@ -1245,6 +1286,7 @@
DataBoard.prototype.get = function(_arg) {
var ID, board, boardID, defaultValue, postID, thread, threadID, val, _i, _len;
+
boardID = _arg.boardID, threadID = _arg.threadID, postID = _arg.postID, defaultValue = _arg.defaultValue;
if (board = this.data.boards[boardID]) {
if (!threadID) {
@@ -1268,6 +1310,7 @@
DataBoard.prototype.clean = function() {
var boardID, now, val, _ref;
+
_ref = this.data.boards;
for (boardID in _ref) {
val = _ref[boardID];
@@ -1287,8 +1330,10 @@
DataBoard.prototype.ajaxClean = function(boardID) {
var _this = this;
+
return $.cache("//api.4chan.org/" + boardID + "/threads.json", function(e) {
var board, page, thread, threads, _i, _j, _len, _len1, _ref, _ref1;
+
if (e.target.status === 404) {
_this["delete"](boardID);
} else if (e.target.status === 200) {
@@ -1376,8 +1421,10 @@
},
toBlob: function() {
var _base;
+
return (_base = HTMLCanvasElement.prototype).toBlob || (_base.toBlob = function(cb) {
var data, i, l, ui8a, _i;
+
data = atob(this.toDataURL().slice(22));
l = data.length;
ui8a = new Uint8Array(l);
@@ -1415,6 +1462,7 @@
init: function() {
var barFixedToggler, barPositionToggler, customNavToggler, editCustomNav, footerToggler, headerToggler, linkJustifyToggler,
_this = this;
+
this.menu = new UI.Menu('header');
this.menuButton = $.el('span', {
className: 'menu-button',
@@ -1505,6 +1553,7 @@
});
return $.ready(function() {
var a, cs;
+
_this.footer = $.id('boardNavDesktopFoot');
if (a = $("a[href*='/" + g.BOARD + "/']", $.id('boardNavDesktopFoot'))) {
a.className = 'current';
@@ -1538,6 +1587,7 @@
}),
setBoardList: function() {
var a, boardList, btn, fourchannav, fullBoardList;
+
fourchannav = $.id('boardNavDesktop');
if (a = $("a[href*='/" + g.BOARD + "/']", fourchannav)) {
a.className = 'current';
@@ -1559,6 +1609,7 @@
},
generateBoardList: function(text) {
var as, list, nodes;
+
list = $('#custom-board-list', Header.bar);
$.rmAll(list);
if (!text) {
@@ -1567,6 +1618,7 @@
as = $$('#full-board-list a[title]', Header.bar);
nodes = text.match(/[\w@]+((-(all|title|replace|full|index|catalog|url:"[^"]+[^"]"|text:"[^"]+")|\,"[^"]+[^"]"))*|[^\w@]+/g).map(function(t) {
var a, board, m, _i, _len;
+
if (/^[^\w@]/.test(t)) {
return $.tn(t);
}
@@ -1617,6 +1669,7 @@
},
toggleBoardList: function() {
var bar, custom, full, showBoardList;
+
bar = Header.bar;
custom = $('#custom-board-list', bar);
full = $('#full-board-list', bar);
@@ -1652,6 +1705,7 @@
},
toggleLinkJustify: function() {
var centered;
+
$.event('CloseMenu');
centered = this.nodeName === 'INPUT' ? this.checked : void 0;
Header.setLinkJustify(centered);
@@ -1681,6 +1735,7 @@
},
toggleBarVisibility: function(e) {
var hide, message;
+
if (e.type === 'mousedown' && e.button !== 0) {
return;
}
@@ -1697,6 +1752,7 @@
},
toggleFooterVisibility: function() {
var hide, message;
+
$.event('CloseMenu');
hide = this.nodeName === 'INPUT' ? this.checked : !!Header.footer.hidden;
Header.setFooterVisibility(hide);
@@ -1706,6 +1762,7 @@
},
setCustomNav: function(show) {
var btn, cust, full, _ref;
+
Header.customNavToggler.checked = show;
cust = $('#custom-board-list', Header.bar);
full = $('#full-board-list', Header.bar);
@@ -1718,12 +1775,14 @@
},
editCustomNav: function() {
var settings;
+
Settings.open('Advanced');
settings = $.id('fourchanx-settings');
return $('input[name=boardnav]', settings).focus();
},
hashScroll: function() {
var hash, post;
+
if (!((hash = this.location.hash.slice(1)) && (post = $.id(hash)))) {
return;
}
@@ -1734,6 +1793,7 @@
},
scrollToPost: function(post) {
var headRect, top;
+
top = post.getBoundingClientRect().top;
if (Conf['Fixed Header'] && !Conf['Bottom Header']) {
headRect = Header.bar.getBoundingClientRect();
@@ -1743,6 +1803,7 @@
},
addShortcut: function(el) {
var shortcut;
+
shortcut = $.el('span', {
className: 'shortcut fourchanx-link'
});
@@ -1754,6 +1815,7 @@
},
createNotification: function(e) {
var cb, content, lifetime, notif, type, _ref;
+
_ref = e.detail, type = _ref.type, content = _ref.content, lifetime = _ref.lifetime, cb = _ref.cb;
notif = new Notification(type, content, lifetime);
if (cb) {
@@ -1766,6 +1828,7 @@
spoilerRange: {},
shortFilename: function(filename, isReply) {
var threshold;
+
threshold = isReply ? 30 : 40;
if (filename.length - 4 > threshold) {
return "" + filename.slice(0, threshold - 5) + "(...)." + filename.slice(-3);
@@ -1775,6 +1838,7 @@
},
postFromObject: function(data, boardID) {
var o;
+
o = {
postID: data.no,
threadID: data.resto || data.no,
@@ -1819,6 +1883,7 @@
*/
var a, boardID, capcode, capcodeClass, capcodeReplies, capcodeStart, closed, comment, container, date, dateUTC, email, emailEnd, emailStart, ext, file, fileDims, fileHTML, fileInfo, fileSize, fileThumb, filename, flag, flagCode, flagName, href, imgSrc, isClosed, isOP, isSticky, name, postID, quote, shortFilename, spoilerRange, staticPath, sticky, subject, threadID, tripcode, uniqueID, userID, _i, _len, _ref;
+
postID = o.postID, threadID = o.threadID, boardID = o.boardID, name = o.name, capcode = o.capcode, tripcode = o.tripcode, uniqueID = o.uniqueID, email = o.email, subject = o.subject, flagCode = o.flagCode, flagName = o.flagName, date = o.date, dateUTC = o.dateUTC, isSticky = o.isSticky, isClosed = o.isClosed, comment = o.comment, capcodeReplies = o.capcodeReplies, file = o.file;
isOP = postID === threadID;
staticPath = '//static.4chan.org/image/';
@@ -1917,6 +1982,7 @@
},
capcodeReplies: function(_arg) {
var array, boardID, bq, capcodeReplies, capcodeType, generateCapcodeReplies, html, root, threadID;
+
boardID = _arg.boardID, threadID = _arg.threadID, bq = _arg.bq, root = _arg.root, capcodeReplies = _arg.capcodeReplies;
if (!capcodeReplies) {
return;
@@ -1953,6 +2019,7 @@
Get = {
threadExcerpt: function(thread) {
var OP, excerpt, _ref;
+
OP = thread.OP;
excerpt = ((_ref = OP.info.subject) != null ? _ref.trim() : void 0) || OP.info.comment.replace(/\n+/g, ' // ') || Conf['Anonymize'] && 'Anonymous' || $('.nameBlock', OP.nodes.info).textContent.trim();
if (excerpt.length > 70) {
@@ -1965,6 +2032,7 @@
},
postFromRoot: function(root) {
var boardID, index, link, post, postID;
+
link = $('a[title="Highlight this post"]', root);
boardID = link.pathname.split('/')[1];
postID = link.hash.slice(2);
@@ -1984,6 +2052,7 @@
},
postDataFromLink: function(link) {
var boardID, path, postID, threadID, _ref;
+
if (link.hostname === 'boards.4chan.org') {
path = link.pathname.split('/');
boardID = path[1];
@@ -2001,6 +2070,7 @@
},
allQuotelinksLinkingTo: function(post) {
var ID, quote, quotedPost, quotelinks, quoterPost, _i, _j, _k, _len, _len1, _len2, _ref, _ref1, _ref2, _ref3;
+
quotelinks = [];
_ref = g.posts;
for (ID in _ref) {
@@ -2029,12 +2099,14 @@
}
return quotelinks.filter(function(quotelink) {
var boardID, postID, _ref4;
+
_ref4 = Get.postDataFromLink(quotelink), boardID = _ref4.boardID, postID = _ref4.postID;
return boardID === post.board.ID && postID === post.ID;
});
},
postClone: function(boardID, threadID, postID, root, context) {
var post, url;
+
if (post = g.posts["" + boardID + "." + postID]) {
Get.insert(post, root, context);
return;
@@ -2057,6 +2129,7 @@
},
insert: function(post, root, context) {
var clone, nodes;
+
if (!root.parentNode) {
return;
}
@@ -2070,6 +2143,7 @@
},
fetchedPost: function(req, boardID, threadID, postID, root, context) {
var board, post, posts, status, thread, url, _i, _len;
+
if (post = g.posts["" + boardID + "." + postID]) {
Get.insert(post, root, context);
return;
@@ -2123,6 +2197,7 @@
},
archivedPost: function(req, boardID, postID, root, context) {
var board, bq, comment, data, o, post, thread, threadID, _ref;
+
if (post = g.posts["" + boardID + "." + postID]) {
Get.insert(post, root, context);
return;
@@ -2217,8 +2292,10 @@
UI = (function() {
var Menu, dialog, drag, dragend, dragstart, hover, hoverend, hoverstart, touchend, touchmove;
+
dialog = function(id, position, html) {
var child, el, move, _i, _len, _ref;
+
el = $.el('div', {
className: 'dialog',
innerHTML: html,
@@ -2258,6 +2335,7 @@
Menu.prototype.makeMenu = function() {
var menu;
+
menu = $.el('div', {
className: 'dialog',
id: 'menu',
@@ -2272,6 +2350,7 @@
Menu.prototype.toggle = function(e, button, data) {
var previousButton;
+
e.preventDefault();
e.stopPropagation();
if (currentMenu) {
@@ -2289,6 +2368,7 @@
Menu.prototype.open = function(button, data) {
var bLeft, bRect, bTop, bottom, cHeight, cWidth, entry, left, mRect, menu, right, style, top, _i, _len, _ref, _ref1, _ref2;
+
menu = this.makeMenu();
currentMenu = menu;
lastToggledButton = button;
@@ -2327,6 +2407,7 @@
Menu.prototype.insertEntry = function(entry, parent, data) {
var subEntry, submenu, _i, _len, _ref;
+
if (typeof entry.open === 'function') {
if (!entry.open(data)) {
return;
@@ -2360,6 +2441,7 @@
Menu.prototype.findNextEntry = function(entry, direction) {
var entries;
+
entries = __slice.call(entry.parentNode.children);
entries.sort(function(first, second) {
return +(first.style.order || first.style.webkitOrder) - +(second.style.order || second.style.webkitOrder);
@@ -2369,6 +2451,7 @@
Menu.prototype.keybinds = function(e) {
var entry, next, nextPrev, subEntry, submenu;
+
entry = $('.focused', currentMenu);
while (subEntry = $('.focused', entry)) {
entry = subEntry;
@@ -2414,6 +2497,7 @@
Menu.prototype.focus = function(entry) {
var bottom, cHeight, cWidth, eRect, focused, left, right, sRect, style, submenu, top, _i, _len, _ref, _ref1, _ref2;
+
while (focused = $.x('parent::*/child::*[contains(@class,"focused")]', entry)) {
$.rmClass(focused, 'focused');
}
@@ -2441,6 +2525,7 @@
Menu.prototype.addEntry = function(e) {
var entry;
+
entry = e.detail;
if (entry.type !== this.type) {
return;
@@ -2451,6 +2536,7 @@
Menu.prototype.parseEntry = function(entry) {
var el, style, subEntries, subEntry, _i, _len;
+
el = entry.el, subEntries = entry.subEntries;
$.addClass(el, 'entry');
$.on(el, 'focus mouseover', (function(e) {
@@ -2474,6 +2560,7 @@
})();
dragstart = function(e) {
var el, isTouching, o, rect, screenHeight, screenWidth, _ref;
+
if (e.type === 'mousedown' && e.button !== 0) {
return;
}
@@ -2512,6 +2599,7 @@
};
touchmove = function(e) {
var touch, _i, _len, _ref;
+
_ref = e.changedTouches;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
touch = _ref[_i];
@@ -2523,6 +2611,7 @@
};
drag = function(e) {
var bottom, clientX, clientY, left, right, style, top;
+
clientX = e.clientX, clientY = e.clientY;
left = clientX - this.dx;
left = left < 10 ? 0 : this.width - left < 10 ? null : left / this.screenWidth * 100 + '%';
@@ -2538,6 +2627,7 @@
};
touchend = function(e) {
var touch, _i, _len, _ref;
+
_ref = e.changedTouches;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
touch = _ref[_i];
@@ -2559,6 +2649,7 @@
};
hoverstart = function(_arg) {
var asapTest, cb, el, endEvents, latestEvent, o, root;
+
root = _arg.root, el = _arg.el, latestEvent = _arg.latestEvent, endEvents = _arg.endEvents, asapTest = _arg.asapTest, cb = _arg.cb;
o = {
root: root,
@@ -2593,6 +2684,7 @@
};
hover = function(e) {
var clientX, clientY, height, left, right, style, top, _ref;
+
this.latestEvent = e;
height = this.el.offsetHeight;
clientX = e.clientX, clientY = e.clientY;
@@ -2636,6 +2728,7 @@
},
node: function() {
var email, name, tripcode, _ref;
+
if (this.info.capcode || this.isClone) {
return;
}
@@ -2662,6 +2755,7 @@
filters: {},
init: function() {
var boards, err, filter, hl, key, op, regexp, stub, top, _i, _len, _ref, _ref1, _ref2, _ref3, _ref4;
+
if (g.VIEW === 'catalog' || !Conf['Filter']) {
return;
}
@@ -2698,6 +2792,7 @@
op = ((_ref2 = filter.match(/[^t]op:(yes|no|only)/)) != null ? _ref2[1] : void 0) || 'yes';
stub = (function() {
var _ref3;
+
switch ((_ref3 = filter.match(/stub:(yes|no)/)) != null ? _ref3[1] : void 0) {
case 'yes':
return true;
@@ -2728,6 +2823,7 @@
},
createFilter: function(regexp, op, stub, hl, top) {
var settings, test;
+
test = typeof regexp === 'string' ? function(value) {
return regexp === value;
} : function(value) {
@@ -2751,6 +2847,7 @@
},
node: function() {
var filter, firstThread, key, result, thisThread, value, _i, _len, _ref;
+
if (this.isClone) {
return;
}
@@ -2862,6 +2959,7 @@
menu: {
init: function() {
var div, entry, type, _i, _len, _ref;
+
if (g.VIEW === 'catalog' || !Conf['Menu'] || !Conf['Filter']) {
return;
}
@@ -2887,6 +2985,7 @@
},
createSubEntry: function(text, type) {
var el;
+
el = $.el('a', {
href: 'javascript:;',
textContent: text
@@ -2897,6 +2996,7 @@
el: el,
open: function(post) {
var value;
+
value = Filter[type](post);
return value !== false;
}
@@ -2904,6 +3004,7 @@
},
makeFilter: function() {
var re, type, value;
+
type = this.dataset.type;
value = Filter[type](Filter.menu.post);
re = ['uniqueID', 'MD5'].contains(type) ? value : value.replace(/\/|\\|\^|\$|\n|\.|\(|\)|\{|\}|\[|\]|\?|\*|\+|\|/g, function(c) {
@@ -2918,6 +3019,7 @@
re = ['uniqueID', 'MD5'].contains(type) ? "/" + re + "/" : "/^" + re + "$/";
return $.get(type, Conf[type], function(item) {
var save, section, select, ta, tl;
+
save = item[type];
save = save ? "" + save + "\n" + re : re;
$.set(type, save);
@@ -2951,6 +3053,7 @@
},
node: function() {
var data;
+
if (!this.isReply || this.isClone) {
return;
}
@@ -2974,6 +3077,7 @@
menu: {
init: function() {
var apply, div, hideStubLink, makeStub, replies, thisPost;
+
if (g.VIEW === 'catalog' || !Conf['Menu'] || !Conf['Reply Hiding Link']) {
return;
}
@@ -3044,6 +3148,7 @@
order: 20,
open: function(post) {
var data;
+
if (!post.isReply || post.isClone || !post.isHidden) {
return false;
}
@@ -3075,6 +3180,7 @@
order: 15,
open: function(post) {
var data;
+
if (!post.isReply || post.isClone || !post.isHidden) {
return false;
}
@@ -3091,6 +3197,7 @@
},
hide: function() {
var makeStub, parent, post, replies, thisPost;
+
parent = this.parentNode;
thisPost = $('input[name=thisPost]', parent).checked;
replies = $('input[name=replies]', parent).checked;
@@ -3109,6 +3216,7 @@
},
show: function() {
var data, parent, post, replies, thisPost;
+
parent = this.parentNode;
thisPost = $('input[name=thisPost]', parent).checked;
replies = $('input[name=replies]', parent).checked;
@@ -3132,6 +3240,7 @@
},
hideStub: function() {
var post;
+
post = PostHiding.menu.post;
post.nodes.root.hidden = true;
$.event('CloseMenu');
@@ -3139,6 +3248,7 @@
},
makeButton: function(post, type) {
var a;
+
a = $.el('a', {
className: "" + type + "-reply-button",
innerHTML: " " + (type === 'hide' ? '-' : '+') + " ",
@@ -3149,6 +3259,7 @@
},
saveHiddenState: function(post, isHiding, thisPost, makeStub, hideRecursively) {
var data;
+
data = {
boardID: post.board.ID,
threadID: post.thread.ID,
@@ -3167,12 +3278,14 @@
},
toggle: function() {
var post;
+
post = Get.postFromNode(this);
PostHiding[(post.isHidden ? 'show' : 'hide')](post);
return PostHiding.saveHiddenState(post, post.isHidden);
},
hide: function(post, makeStub, hideRecursively) {
var a, button, postInfo, quotelink, _i, _len, _ref;
+
if (makeStub == null) {
makeStub = Conf['Stubs'];
}
@@ -3207,6 +3320,7 @@
},
show: function(post, showRecursively) {
var quotelink, _i, _len, _ref;
+
if (showRecursively == null) {
showRecursively = Conf['Recursive Hiding'];
}
@@ -3242,6 +3356,7 @@
},
node: function() {
var i, obj, quote, recursive, _i, _j, _len, _len1, _ref, _ref1;
+
if (this.isClone) {
return;
}
@@ -3259,6 +3374,7 @@
},
add: function() {
var args, obj, post, recursive, _base, _name;
+
recursive = arguments[0], post = arguments[1], args = 3 <= arguments.length ? __slice.call(arguments, 2) : [];
obj = (_base = Recursive.recursives)[_name = post.fullID] || (_base[_name] = {
recursives: [],
@@ -3269,6 +3385,7 @@
},
rm: function(recursive, post) {
var i, obj, rec, _i, _len, _ref;
+
if (!(obj = Recursive.recursives[post.fullID])) {
return;
}
@@ -3283,6 +3400,7 @@
},
apply: function() {
var ID, args, fullID, post, recursive, _ref;
+
recursive = arguments[0], post = arguments[1], args = 3 <= arguments.length ? __slice.call(arguments, 2) : [];
fullID = post.fullID;
_ref = g.posts;
@@ -3309,6 +3427,7 @@
},
node: function() {
var data;
+
if (data = ThreadHiding.db.get({
boardID: this.board.ID,
threadID: this.ID
@@ -3322,6 +3441,7 @@
},
syncCatalog: function() {
var hiddenThreads, hiddenThreadsOnCatalog, threadID;
+
hiddenThreads = ThreadHiding.db.get({
boardID: g.BOARD.ID,
defaultValue: {}
@@ -3348,6 +3468,7 @@
cleanCatalog: function(hiddenThreadsOnCatalog) {
return $.cache("//api.4chan.org/" + g.BOARD + "/threads.json", function() {
var page, thread, threads, _i, _j, _len, _len1, _ref, _ref1;
+
if (this.status !== 200) {
return;
}
@@ -3373,6 +3494,7 @@
menu: {
init: function() {
var apply, div, hideStubLink, makeStub;
+
if (g.VIEW !== 'index' || !Conf['Menu'] || !Conf['Thread Hiding Link']) {
return;
}
@@ -3394,6 +3516,7 @@
order: 20,
open: function(_arg) {
var isReply, thread;
+
thread = _arg.thread, isReply = _arg.isReply;
if (isReply || thread.isHidden) {
return false;
@@ -3423,6 +3546,7 @@
order: 20,
open: function(_arg) {
var isReply, thread;
+
thread = _arg.thread, isReply = _arg.isReply;
if (isReply || !thread.isHidden) {
return false;
@@ -3442,6 +3566,7 @@
order: 15,
open: function(_arg) {
var isReply, thread;
+
thread = _arg.thread, isReply = _arg.isReply;
if (isReply || !thread.isHidden) {
return false;
@@ -3452,6 +3577,7 @@
},
hide: function() {
var makeStub, thread;
+
makeStub = $('input', this.parentNode).checked;
thread = ThreadHiding.menu.thread;
ThreadHiding.hide(thread, makeStub);
@@ -3460,6 +3586,7 @@
},
show: function() {
var thread;
+
thread = ThreadHiding.menu.thread;
ThreadHiding.show(thread);
ThreadHiding.saveHiddenState(thread);
@@ -3467,6 +3594,7 @@
},
hideStub: function() {
var thread;
+
thread = ThreadHiding.menu.thread;
ThreadHiding.hide(thread, false);
$.event('CloseMenu');
@@ -3474,6 +3602,7 @@
},
makeButton: function(thread, type) {
var a;
+
a = $.el('a', {
className: "" + type + "-thread-button",
innerHTML: " " + (type === 'hide' ? '-' : '+') + " ",
@@ -3485,6 +3614,7 @@
},
saveHiddenState: function(thread, makeStub) {
var hiddenThreadsOnCatalog;
+
hiddenThreadsOnCatalog = JSON.parse(localStorage.getItem("4chan-hide-t-" + g.BOARD)) || {};
if (thread.isHidden) {
ThreadHiding.db.set({
@@ -3517,6 +3647,7 @@
},
hide: function(thread, makeStub) {
var OP, a, button, numReplies, opInfo, span, threadRoot;
+
if (makeStub == null) {
makeStub = Conf['Stubs'];
}
@@ -3540,6 +3671,7 @@
},
show: function(thread) {
var threadRoot;
+
if (thread.stub) {
$.rm(thread.stub);
delete thread.stub;
@@ -3552,6 +3684,7 @@
QuoteBacklink = {
init: function() {
var format;
+
if (g.VIEW === 'catalog' || !Conf['Quote Backlinks']) {
return;
}
@@ -3569,6 +3702,7 @@
},
firstNode: function() {
var a, clone, container, containers, frag, link, post, quote, _i, _j, _k, _len, _len1, _len2, _ref, _ref1;
+
if (this.isClone || !this.quotes.length) {
return;
}
@@ -3606,6 +3740,7 @@
},
secondNode: function() {
var container;
+
if (this.isClone && (this.origin.isReply || Conf['OP Backlinks'])) {
this.nodes.backlinkContainer = $('.container', this.nodes.info);
return;
@@ -3619,6 +3754,7 @@
},
getContainer: function(id) {
var _base;
+
return (_base = this.containers)[id] || (_base[id] = $.el('span', {
className: 'container'
}));
@@ -3641,6 +3777,7 @@
},
node: function() {
var board, boardID, quotelink, quotelinks, quotes, thread, threadID, _i, _len, _ref, _ref1;
+
if (this.isClone && this.thread === this.context.thread) {
return;
}
@@ -3673,6 +3810,7 @@
if (Conf['Quote Hash Navigation']) {
this.node = function() {
var link, _i, _len, _ref;
+
_ref = this.nodes.quotelinks.concat(__slice.call(this.nodes.backlinks));
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
link = _ref[_i];
@@ -3685,6 +3823,7 @@
} else {
this.node = function() {
var link, _i, _len, _ref;
+
_ref = this.nodes.quotelinks.concat(__slice.call(this.nodes.backlinks));
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
link = _ref[_i];
@@ -3711,6 +3850,7 @@
},
toggle: function(e) {
var boardID, context, postID, threadID, _ref;
+
if (e.shiftKey || e.altKey || e.ctrlKey || e.metaKey || e.button !== 0) {
return;
}
@@ -3736,6 +3876,7 @@
},
add: function(quotelink, boardID, threadID, postID, context) {
var inline, isBacklink, post, qroot, root;
+
isBacklink = $.hasClass(quotelink, 'backlink');
inline = $.el('div', {
id: "i" + postID,
@@ -3760,6 +3901,7 @@
},
rm: function(quotelink, boardID, threadID, postID, context) {
var el, inlined, isBacklink, post, qroot, root, _ref;
+
isBacklink = $.hasClass(quotelink, 'backlink');
root = QuoteInline.findRoot(quotelink, isBacklink);
root = $.x("following-sibling::div[@id='i" + postID + "'][1]", root);
@@ -3801,6 +3943,7 @@
},
node: function() {
var boardID, op, postID, quotelink, quotelinks, quotes, _i, _j, _len, _len1, _ref;
+
if (this.isClone && this.thread === this.context.thread) {
return;
}
@@ -3843,6 +3986,7 @@
},
node: function() {
var link, _i, _len, _ref;
+
_ref = this.nodes.quotelinks.concat(__slice.call(this.nodes.backlinks));
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
link = _ref[_i];
@@ -3851,6 +3995,7 @@
},
mouseover: function(e) {
var boardID, clone, origin, post, postID, posts, qp, quote, quoterID, threadID, _i, _j, _len, _len1, _ref, _ref1;
+
if ($.hasClass(this, 'inlined')) {
return;
}
@@ -3894,6 +4039,7 @@
},
mouseout: function() {
var clone, post, root, _i, _len, _ref;
+
if (!(root = this.el.firstElementChild)) {
return;
}
@@ -3923,6 +4069,7 @@
},
node: function() {
var boardID, postID, quotelink, _i, _len, _ref, _ref1, _ref2;
+
if (this.isClone) {
return;
}
@@ -3945,6 +4092,7 @@
QuoteThreading = {
init: function() {
var input;
+
if (!(Conf['Quote Threading'] && g.VIEW === 'thread')) {
return;
}
@@ -3967,6 +4115,7 @@
},
setup: function() {
var ID, post, posts;
+
$.off(d, '4chanXInitFinished', QuoteThreading.setup);
posts = g.posts;
for (ID in posts) {
@@ -3979,6 +4128,7 @@
},
node: function() {
var ID, fullID, keys, len, post, posts, qid, quote, quotes, uniq, _i, _len;
+
if (this.isClone || !QuoteThreading.enabled || this.thread.OP === this) {
return;
}
@@ -4008,6 +4158,7 @@
},
nodeinsert: function() {
var bottom, height, qpost, qroot, threadContainer, top, _ref;
+
qpost = g.posts[this.threaded];
delete this.threaded;
delete this.cb;
@@ -4036,6 +4187,7 @@
},
toggle: function() {
var container, containers, node, post, replies, reply, thread, _i, _j, _k, _len, _len1, _len2, _ref;
+
thread = $('.thread');
replies = $$('.thread > .replyContainer, .threadContainer > .replyContainer', thread);
QuoteThreading.enabled = this.checked;
@@ -4052,6 +4204,7 @@
} else {
replies.sort(function(a, b) {
var aID, bID;
+
aID = Number(a.id.slice(2));
bID = Number(b.id.slice(2));
return aID - bID;
@@ -4072,6 +4225,7 @@
},
kb: function() {
var control;
+
control = $.id('threadingControl');
return control.click();
}
@@ -4098,6 +4252,7 @@
},
node: function() {
var quotelink, _i, _len, _ref;
+
if (this.isClone) {
return;
}
@@ -4120,6 +4275,7 @@
cb: {
seek: function(type) {
var highlight, post, posts, result, str;
+
if (!(Conf['Mark Quotes of You'] && Conf['Quick Reply'])) {
return;
}
@@ -4175,6 +4331,7 @@
},
node: function() {
var deadlink, _i, _len, _ref;
+
_ref = $$('.deadlink', this.nodes.comment);
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
deadlink = _ref[_i];
@@ -4189,6 +4346,7 @@
},
parseDeadlink: function(deadlink) {
var a, boardID, m, post, postID, quote, quoteID, redirect, _ref;
+
if (deadlink.parentNode.className === 'prettyprint') {
Quotify.fixDeadlink(deadlink);
return;
@@ -4267,7 +4425,7 @@
if (g.VIEW === 'catalog' || !Conf['Linkify']) {
return;
}
- this.regString = /(?:(http|https|mailto|git|magnet|ftp|irc):([a-z\d%\/])|www\d{0,3}[.]|[-a-z\d.]+[.](com|net|org|co\.jp|uk|ru|be|tv|xxx|edu|gov|cd|es|de|se|tk|dk|io|fm|fi)|[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}|[-\w\d.@]+@[a-z\d.-]+\.[a-z\d])/i;
+ this.regString = /((https?|mailto|git|magnet|ftp|irc):([a-z\d%\/])|www\d{0,3}[.]|[-a-z\d.]+[.](com|net|org|co\.jp|us|uk|ru|be|tv|xxx|edu|gov|cd|es|de|se|tk|dk|io|fm|fi|mp|ly)|[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}|[-\w\d.@]+@[a-z\d.-]+\.[a-z\d])/i;
if (Conf['Comment Expansion']) {
ExpandComment.callbacks.push(this.node);
}
@@ -4281,6 +4439,7 @@
},
node: function() {
var data, el, end, endNode, i, index, items, length, link, links, node, range, result, saved, snapshot, space, test, _i, _len, _ref;
+
if (this.isClone) {
if (Conf['Embedding']) {
i = 0;
@@ -4359,6 +4518,7 @@
},
makeRange: function(startNode, endNode, startOffset, endOffset) {
var range;
+
range = document.createRange();
range.setStart(startNode, startOffset);
range.setEnd(endNode, endOffset);
@@ -4366,6 +4526,7 @@
},
makeLink: function(range) {
var a, char, text, trim;
+
text = range.toString();
trim = function() {
if (!(range.endOffset < 1)) {
@@ -4399,6 +4560,7 @@
},
services: function(link) {
var href, key, match, type, _ref;
+
href = link.href;
_ref = Linkify.types;
for (key in _ref) {
@@ -4411,6 +4573,7 @@
},
embed: function(data) {
var embed, href, key, link, name, options, uid, value, _ref;
+
key = data[0], uid = data[1], options = data[2], link = data[3];
href = link.href;
embed = $.el('a', {
@@ -4439,6 +4602,7 @@
},
title: function(data) {
var embed, err, key, link, options, service, title, titles, uid;
+
key = data[0], uid = data[1], options = data[2], link = data[3], embed = data[4];
if (!(service = Linkify.types[key].title)) {
return;
@@ -4475,18 +4639,21 @@
cb: {
toggle: function() {
var string, _ref;
+
_ref = $.hasClass(this, "embedded") ? ['unembed', '(embed)'] : ['embed', '(unembed)'], string = _ref[0], this.textContent = _ref[1];
$.replace(this.previousElementSibling, Linkify.cb[string](this));
return $.toggleClass(this, 'embedded');
},
embed: function(a) {
var el, style, type;
+
el = (type = Linkify.types[a.dataset.key]).el(a);
el.style.cssText = (style = type.style) ? style : "border: 0; width: 640px; height: 390px";
return el;
},
unembed: function(a) {
var el;
+
el = $.el('a', {
rel: 'nofollow noreferrer',
target: 'blank',
@@ -4499,6 +4666,7 @@
},
title: function(response, data) {
var embed, key, link, options, service, text, uid;
+
key = data[0], uid = data[1], options = data[2], link = data[3], embed = data[4];
service = Linkify.types[key].title;
switch (response.status) {
@@ -4538,6 +4706,7 @@
regExp: /.*(?:gist.github.com.*\/)([^\/][^\/]*)$/,
el: function(a) {
var div;
+
return div = $.el('iframe', {
src: "http://www.purplegene.com/script?url=https://gist.github.com/" + a.dataset.uid + ".js"
});
@@ -4548,6 +4717,7 @@
},
text: function(_arg) {
var file, files;
+
files = _arg.files;
for (file in files) {
if (files.hasOwnProperty(file)) {
@@ -4595,6 +4765,7 @@
regExp: /.*(?:pastebin.com\/(?!u\/))([^#\&\?]*).*/,
el: function(a) {
var div;
+
return div = $.el('iframe', {
src: "http://pastebin.com/embed_iframe.php?i=" + a.dataset.uid
});
@@ -4605,6 +4776,7 @@
style: 'height: auto; width: 500px; display: inline-block;',
el: function(a) {
var div;
+
div = $.el('div', {
className: "soundcloud",
name: "soundcloud"
@@ -4630,6 +4802,7 @@
style: "border: none; width: 640px; height: 360px;",
el: function(a) {
var channel, chapter, result, _;
+
if (result = /(\w+)\/(?:[a-z]\/)?(\d+)/i.exec(a.dataset.uid)) {
_ = result[0], channel = result[1], chapter = result[2];
return $.el('object', {
@@ -4701,6 +4874,7 @@
QR = {
init: function() {
var sc;
+
if (!Conf['Quick Reply']) {
return;
}
@@ -4747,6 +4921,7 @@
},
initReady: function() {
var link;
+
QR.postingIsEnabled = !!$.id('postForm');
if (!QR.postingIsEnabled) {
return;
@@ -4766,11 +4941,13 @@
$.before($.id('postForm'), link);
$.on(d, 'QRGetSelectedPost', function(_arg) {
var cb;
+
cb = _arg.detail;
return cb(QR.selected);
});
$.on(d, 'QRAddPreSubmitHook', function(_arg) {
var cb;
+
cb = _arg.detail;
return QR.preSubmitHooks.push(cb);
});
@@ -4799,6 +4976,7 @@
},
open: function() {
var err;
+
if (QR.nodes) {
QR.nodes.el.hidden = false;
QR.unhide();
@@ -4817,6 +4995,7 @@
},
close: function() {
var post, _i, _len, _ref;
+
if (QR.req) {
QR.abort();
return;
@@ -4864,6 +5043,7 @@
},
error: function(err) {
var el;
+
QR.open();
if (typeof err === 'string') {
el = $.tn(err);
@@ -4891,6 +5071,7 @@
notifications: [],
cleanNotifications: function() {
var notification, _i, _len, _ref;
+
_ref = QR.notifications;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
notification = _ref[_i];
@@ -4900,6 +5081,7 @@
},
status: function() {
var disabled, status, thread, value;
+
if (!QR.nodes) {
return;
}
@@ -4921,6 +5103,7 @@
QR.persona.getPassword();
return $.get('QR.personas', Conf['QR.personas'], function(_arg) {
var arr, item, personas, type, types, _i, _len, _ref;
+
personas = _arg['QR.personas'];
types = {
name: [],
@@ -4940,6 +5123,7 @@
},
parseItem: function(item, types) {
var boards, match, type, val, _ref, _ref1;
+
if (item[0] === '#') {
return;
}
@@ -4968,6 +5152,7 @@
},
loadPersonas: function(type, arr) {
var list, val, _i, _len;
+
list = $("#list-" + type, QR.nodes.el);
for (_i = 0, _len = arr.length; _i < _len; _i++) {
val = arr[_i];
@@ -4980,6 +5165,7 @@
},
getPassword: function() {
var input, m;
+
if (!QR.persona.pwd) {
QR.persona.pwd = (m = d.cookie.match(/4chan_pass=([^;]+)/)) ? decodeURIComponent(m[1]) : (input = $.id('postPassword')) ? input.value : $.id('delPassword').value;
}
@@ -4988,6 +5174,7 @@
get: function(cb) {
return $.get('QR.persona', {}, function(_arg) {
var persona;
+
persona = _arg['QR.persona'];
return cb(persona);
});
@@ -4995,6 +5182,7 @@
set: function(post) {
return $.get('QR.persona', {}, function(_arg) {
var persona;
+
persona = _arg['QR.persona'];
persona = {
name: post.name,
@@ -5008,6 +5196,7 @@
cooldown: {
init: function() {
var board;
+
if (!Conf['Cooldown']) {
return;
}
@@ -5049,6 +5238,7 @@
},
sync: function(cooldowns) {
var id;
+
for (id in cooldowns) {
QR.cooldown.cooldowns[id] = cooldowns[id];
}
@@ -5056,6 +5246,7 @@
},
set: function(data) {
var cooldown, delay, hasFile, isReply, isSage, post, req, start, type, upSpd;
+
if (!Conf['Cooldown']) {
return;
}
@@ -5095,6 +5286,7 @@
},
count: function() {
var cooldown, cooldowns, elapsed, hasFile, isReply, isSage, now, post, seconds, start, type, types, upSpd, upSpdAccuracy, update, _ref;
+
if (!Object.keys(QR.cooldown.cooldowns).length) {
$["delete"]("" + g.BOARD + ".cooldown");
delete QR.cooldown.isCounting;
@@ -5148,6 +5340,7 @@
},
quote: function(e) {
var caretPos, com, index, post, range, s, sel, text, thread, _ref;
+
if (e != null) {
e.preventDefault();
}
@@ -5185,6 +5378,7 @@
},
characterCount: function() {
var count, counter;
+
counter = QR.nodes.charCount;
count = QR.nodes.com.textLength;
counter.textContent = count;
@@ -5193,6 +5387,7 @@
},
drag: function(e) {
var toggle;
+
toggle = e.type === 'dragstart' ? $.off : $.on;
toggle(d, 'dragover', QR.dragOver);
return toggle(d, 'drop', QR.dropFile);
@@ -5212,6 +5407,7 @@
},
paste: function(e) {
var blob, files, item, _i, _len, _ref;
+
files = [];
_ref = e.clipboardData.items;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -5239,6 +5435,7 @@
},
fileInput: function(files) {
var file, length, max, post, _i, _len;
+
if (files instanceof Event) {
files = __slice.call(this.files);
QR.nodes.fileInput.value = null;
@@ -5287,6 +5484,7 @@
function _Class(select) {
var el, elm, event, prev, _i, _j, _len, _len1, _ref, _ref1,
_this = this;
+
el = $.el('a', {
className: 'qr-preview',
draggable: true,
@@ -5346,6 +5544,7 @@
_Class.prototype.rm = function() {
var index;
+
this["delete"]();
index = QR.posts.indexOf(this);
if (QR.posts.length === 1) {
@@ -5365,6 +5564,7 @@
_Class.prototype.lock = function(lock) {
var name, _i, _len, _ref;
+
if (lock == null) {
lock = true;
}
@@ -5389,6 +5589,7 @@
_Class.prototype.select = function() {
var rectEl, rectList;
+
if (QR.selected) {
QR.selected.nodes.el.id = null;
QR.selected.forceSave();
@@ -5405,6 +5606,7 @@
_Class.prototype.load = function() {
var name, _i, _len, _ref;
+
_ref = ['thread', 'name', 'email', 'sub', 'com'];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
name = _ref[_i];
@@ -5416,6 +5618,7 @@
_Class.prototype.save = function(input) {
var name, _ref;
+
if (input.type === 'checkbox') {
this.spoiler = input.checked;
return;
@@ -5436,6 +5639,7 @@
_Class.prototype.forceSave = function() {
var name, _i, _len, _ref;
+
if (this !== QR.selected) {
return;
}
@@ -5465,9 +5669,11 @@
_Class.prototype.setThumbnail = function() {
var fileURL, img,
_this = this;
+
img = $.el('img');
img.onload = function() {
var cv, height, s, width;
+
s = 90 * 2;
if (_this.file.type === 'image/gif') {
s *= 3;
@@ -5525,9 +5731,11 @@
_Class.prototype.pasteText = function(file) {
var reader,
_this = this;
+
reader = new FileReader();
reader.onload = function(e) {
var text;
+
text = e.target.result;
if (_this.com) {
_this.com += "\n" + text;
@@ -5565,6 +5773,7 @@
_Class.prototype.drop = function() {
var el, index, newIndex, oldIndex, post;
+
$.rmClass(this, 'over');
if (!this.draggable) {
return;
@@ -5599,6 +5808,7 @@
ready: function() {
var imgContainer, input, setLifetime,
_this = this;
+
setLifetime = function(e) {
return _this.lifetime = e.detail;
};
@@ -5635,6 +5845,7 @@
});
$.get('captchas', [], function(_arg) {
var captchas;
+
captchas = _arg.captchas;
return _this.sync(captchas);
});
@@ -5651,6 +5862,7 @@
},
getOne: function() {
var captcha, challenge, response;
+
this.clear();
if (captcha = this.captchas.shift()) {
challenge = captcha.challenge, response = captcha.response;
@@ -5675,6 +5887,7 @@
},
save: function() {
var response;
+
if (!(response = this.nodes.input.value.trim())) {
return;
}
@@ -5689,6 +5902,7 @@
},
clear: function() {
var captcha, i, now, _i, _len, _ref;
+
now = Date.now();
_ref = this.captchas;
for (i = _i = 0, _len = _ref.length; _i < _len; i = ++_i) {
@@ -5706,6 +5920,7 @@
},
load: function() {
var challenge;
+
if (!this.nodes.challenge.firstChild) {
return;
}
@@ -5718,6 +5933,7 @@
},
count: function() {
var count;
+
count = this.captchas.length;
this.nodes.input.placeholder = (function() {
switch (count) {
@@ -5750,6 +5966,7 @@
},
dialog: function() {
var dialog, elm, i, items, mimeTypes, name, nodes, thread;
+
dialog = UI.dialog('qr', 'top:0;right:0;', "
");
QR.nodes = nodes = {
el: dialog,
@@ -5868,6 +6085,7 @@
preSubmitHooks: [],
submit: function(e) {
var challenge, err, extra, filetag, hook, options, post, postData, response, textOnly, thread, threadID, _i, _len, _ref, _ref1;
+
if (e != null) {
e.preventDefault();
}
@@ -5981,6 +6199,7 @@
},
response: function() {
var URL, ban, board, err, h1, isReply, m, post, postID, req, resDoc, threadID, _, _ref, _ref1;
+
req = QR.req;
delete QR.req;
post = QR.posts[0];
@@ -6078,6 +6297,7 @@
FappeTyme = {
init: function() {
var el, input;
+
if (!Conf['Fappe Tyme'] || g.VIEW === 'catalog' || g.BOARD === 'f') {
return;
}
@@ -6129,6 +6349,7 @@
},
node: function() {
var thumb, _ref;
+
if (!((_ref = this.file) != null ? _ref.isImage : void 0)) {
return;
}
@@ -6153,6 +6374,7 @@
},
toggleAll: function() {
var ID, file, func, post, _i, _len, _ref, _ref1;
+
$.event('CloseMenu');
if (ImageExpand.on = $.hasClass(ImageExpand.EAI, 'expand-all-shortcut')) {
ImageExpand.EAI.className = 'contract-all-shortcut';
@@ -6186,6 +6408,7 @@
},
toggle: function(post) {
var headRect, rect, root, thumb, x, y;
+
thumb = post.file.thumb;
if (!(post.file.isExpanded || $.hasClass(thumb, 'expanding'))) {
ImageExpand.expand(post);
@@ -6195,6 +6418,7 @@
root = post.nodes.root;
rect = (Conf['Advance on contract'] ? (function() {
var next;
+
next = root;
while (next = $.x("following::div[contains(@class,'postContainer')][1]", next)) {
if ($('.stub', next) || next.offsetHeight === 0) {
@@ -6225,6 +6449,7 @@
},
expand: function(post, src) {
var img, thumb;
+
thumb = post.file.thumb;
if (post.isHidden || post.file.isExpanded || $.hasClass(thumb, 'expanding')) {
return;
@@ -6252,6 +6477,7 @@
},
completeExpand: function(post) {
var prev, thumb;
+
thumb = post.file.thumb;
if (!$.hasClass(thumb, 'expanding')) {
return;
@@ -6265,6 +6491,7 @@
prev = post.nodes.root.getBoundingClientRect();
return $.queueTask(function() {
var curr;
+
$.addClass(post.nodes.root, 'expanded-image');
$.rmClass(post.file.thumb, 'expanding');
if (!(prev.top + prev.height <= 0)) {
@@ -6276,6 +6503,7 @@
},
error: function() {
var URL, post, src, timeoutID;
+
post = Get.postFromNode(this);
$.rm(this);
delete post.file.fullImage;
@@ -6301,6 +6529,7 @@
return $.ajax("//api.4chan.org/" + post.board + "/res/" + post.thread + ".json", {
onload: function() {
var postObj, _i, _len, _ref;
+
if (this.status !== 200) {
return;
}
@@ -6324,6 +6553,7 @@
menu: {
init: function() {
var conf, createSubEntry, el, name, subEntries, _ref;
+
if (g.VIEW === 'catalog' || !Conf['Image Expansion']) {
return;
}
@@ -6347,6 +6577,7 @@
},
createSubEntry: function(name, desc) {
var input, label;
+
label = $.el('label', {
innerHTML: " " + name,
title: desc
@@ -6380,6 +6611,7 @@
},
node: function() {
var _ref;
+
if (!((_ref = this.file) != null ? _ref.isImage : void 0)) {
return;
}
@@ -6387,6 +6619,7 @@
},
mouseover: function(e) {
var el, post;
+
post = Get.postFromNode(this);
el = $.el('img', {
id: 'ihover',
@@ -6408,6 +6641,7 @@
error: function() {
var URL, post, src, timeoutID,
_this = this;
+
if (!doc.contains(this)) {
return;
}
@@ -6432,6 +6666,7 @@
return $.ajax("//api.4chan.org/" + post.board + "/res/" + post.thread + ".json", {
onload: function() {
var postObj, _i, _len, _ref;
+
if (this.status !== 200) {
return;
}
@@ -6457,6 +6692,7 @@
ImageLoader = {
init: function() {
var prefetch;
+
if (g.VIEW === 'catalog') {
return;
}
@@ -6483,6 +6719,7 @@
},
node: function() {
var URL, img, string, style, thumb, type, _ref, _ref1;
+
if (this.isClone || this.isHidden || this.thread.isHidden || !((_ref = this.file) != null ? _ref.isImage : void 0)) {
return;
}
@@ -6504,6 +6741,7 @@
},
toggle: function() {
var enabled, id, post, _ref;
+
enabled = Conf['prefetch'] = this.checked;
if (enabled) {
_ref = g.threads["" + g.BOARD.ID + "." + g.THREADID].posts;
@@ -6527,6 +6765,7 @@
},
node: function() {
var thumb, _ref;
+
if (this.isClone || !((_ref = this.file) != null ? _ref.isSpoiler : void 0)) {
return;
}
@@ -6539,6 +6778,7 @@
Sauce = {
init: function() {
var err, link, links, _i, _len, _ref;
+
if (g.VIEW === 'catalog' || !Conf['Sauce']) {
return;
}
@@ -6568,6 +6808,7 @@
},
createSauceLink: function(link) {
var m, text;
+
link = link.replace(/%(T?URL|MD5|board)/ig, function(parameter) {
switch (parameter) {
case '%TURL':
@@ -6588,6 +6829,7 @@
},
node: function() {
var link, nodes, _i, _len, _ref;
+
if (this.isClone || !this.file) {
return;
}
@@ -6604,6 +6846,7 @@
ArchiveLink = {
init: function() {
var div, entry, type, _i, _len, _ref;
+
if (g.VIEW === 'catalog' || !Conf['Menu'] || !Conf['Archive Link']) {
return;
}
@@ -6616,6 +6859,7 @@
order: 90,
open: function(_arg) {
var ID, board, thread;
+
ID = _arg.ID, thread = _arg.thread, board = _arg.board;
return !!Redirect.to('thread', {
postID: ID,
@@ -6634,12 +6878,14 @@
},
createSubEntry: function(text, type) {
var el, open;
+
el = $.el('a', {
textContent: text,
target: '_blank'
});
open = type === 'post' ? function(_arg) {
var ID, board, thread;
+
ID = _arg.ID, thread = _arg.thread, board = _arg.board;
el.href = Redirect.to('thread', {
postID: ID,
@@ -6649,6 +6895,7 @@
return true;
} : function(post) {
var value;
+
value = Filter[type](post);
if (!value) {
return false;
@@ -6671,6 +6918,7 @@
DeleteLink = {
init: function() {
var div, fileEl, fileEntry, postEl, postEntry;
+
if (g.VIEW === 'catalog' || !Conf['Menu'] || !Conf['Delete Link']) {
return;
}
@@ -6698,6 +6946,7 @@
el: fileEl,
open: function(_arg) {
var file;
+
file = _arg.file;
if (!file || file.isDead) {
return false;
@@ -6713,6 +6962,7 @@
order: 40,
open: function(post) {
var node;
+
if (post.isDead || post.board.ID === 'q') {
return false;
}
@@ -6727,6 +6977,7 @@
},
"delete": function() {
var fileOnly, form, link, post;
+
post = DeleteLink.post;
if (DeleteLink.cooldown.counting === post) {
return;
@@ -6756,6 +7007,7 @@
},
load: function(link, post, fileOnly, resDoc) {
var msg, s;
+
if (resDoc.title === '4chan - Banned') {
s = 'Banned!';
} else if (msg = resDoc.getElementById('errmsg')) {
@@ -6776,6 +7028,7 @@
cooldown: {
start: function(post, node) {
var length, seconds, _ref;
+
if (!((_ref = QR.db) != null ? _ref.get({
boardID: post.board.ID,
threadID: post.thread.ID,
@@ -6809,6 +7062,7 @@
DownloadLink = {
init: function() {
var a;
+
if (g.VIEW === 'catalog' || !Conf['Menu'] || !Conf['Download Link']) {
return;
}
@@ -6822,6 +7076,7 @@
order: 100,
open: function(_arg) {
var file;
+
file = _arg.file;
if (!file) {
return false;
@@ -6836,6 +7091,7 @@
Menu = (function() {
var a;
+
a = $.el('a', {
className: 'menu-button brackets-wrap',
innerHTML: '',
@@ -6854,6 +7110,7 @@
},
node: function() {
var button;
+
if (this.isClone) {
button = $('.menu-button', this.nodes.info);
} else {
@@ -6864,6 +7121,7 @@
},
makeButton: function() {
var el;
+
el = a.cloneNode(true);
$.on(el, 'click', Menu.toggle);
return el;
@@ -6877,6 +7135,7 @@
ReportLink = {
init: function() {
var a;
+
if (g.VIEW === 'catalog' || !Conf['Menu'] || !Conf['Report Link']) {
return;
}
@@ -6898,6 +7157,7 @@
},
report: function() {
var id, post, set, url;
+
post = ReportLink.post;
url = "//sys.4chan.org/" + post.board + "/imgboard.php?mode=report&no=" + post;
id = Date.now();
@@ -6910,6 +7170,7 @@
init: function() {
return $.ready(function() {
var href;
+
Favicon.el = $('link[rel="shortcut icon"]', d.head);
Favicon.el.type = 'image/x-icon';
href = Favicon.el.href;
@@ -6982,6 +7243,7 @@
init: function() {
var sc,
_this = this;
+
if (g.VIEW !== 'thread' || !Conf['Thread Stats']) {
return;
}
@@ -7010,6 +7272,7 @@
},
node: function() {
var ID, fileCount, post, postCount, _ref;
+
postCount = 0;
fileCount = 0;
_ref = this.posts;
@@ -7027,6 +7290,7 @@
},
onUpdate: function(e) {
var fileCount, postCount, _ref;
+
if (e.detail[404]) {
return;
}
@@ -7035,6 +7299,7 @@
},
update: function(postCount, fileCount) {
var fileCountEl, postCountEl, thread;
+
thread = ThreadStats.thread, postCountEl = ThreadStats.postCountEl, fileCountEl = ThreadStats.fileCountEl;
postCountEl.textContent = postCount;
fileCountEl.textContent = fileCount;
@@ -7059,6 +7324,7 @@
},
onThreadsLoad: function() {
var page, pages, thread, _i, _j, _len, _len1, _ref;
+
if (!(Conf["Page Count in Stats"] && this.status === 200)) {
return;
}
@@ -7082,6 +7348,7 @@
init: function() {
var checked, conf, el, input, name, sc, settings, subEntries, _ref,
_this = this;
+
if (g.VIEW !== 'thread' || !Conf['Thread Updater']) {
return;
}
@@ -7231,6 +7498,7 @@
},
interval: function() {
var val;
+
val = +this.value;
if (val < 1) {
val = 1;
@@ -7240,6 +7508,7 @@
},
load: function() {
var klass, req, text, _ref;
+
req = ThreadUpdater.req;
switch (req.status) {
case 200:
@@ -7272,6 +7541,7 @@
},
getInterval: function() {
var i, j;
+
i = ThreadUpdater.interval;
j = Math.min(ThreadUpdater.outdateCount, 10);
if (!d.hidden) {
@@ -7281,12 +7551,14 @@
},
intervalShortcut: function() {
var settings;
+
Settings.open('Advanced');
settings = $.id('fourchanx-settings');
return $('input[name=Interval]', settings).focus();
},
set: function(name, text, klass) {
var el, node;
+
el = ThreadUpdater[name];
if (node = el.firstChild) {
node.data = text;
@@ -7299,6 +7571,7 @@
},
timeout: function() {
var n;
+
ThreadUpdater.timeoutID = setTimeout(ThreadUpdater.timeout, 1000);
if (!(n = --ThreadUpdater.seconds)) {
return ThreadUpdater.update();
@@ -7311,6 +7584,7 @@
},
update: function() {
var url;
+
if (!ThreadUpdater.online) {
return;
}
@@ -7333,6 +7607,7 @@
},
updateThreadStatus: function(title, OP) {
var icon, message, root, titleLC;
+
titleLC = title.toLowerCase();
if (ThreadUpdater.thread["is" + title] === !!OP[titleLC]) {
return;
@@ -7359,6 +7634,7 @@
},
parse: function(postObjects) {
var ID, OP, count, deletedFiles, deletedPosts, files, index, key, node, num, post, postObject, posts, root, scroll, _i, _len, _ref;
+
OP = postObjects[0];
Build.spoilerRange[ThreadUpdater.thread.board] = OP.custom_spoiler;
ThreadUpdater.updateThreadStatus('Sticky', OP);
@@ -7444,6 +7720,7 @@
}
$.queueTask(function() {
var length, threadID;
+
threadID = ThreadUpdater.thread.ID;
length = $$('.thread > .postContainer', ThreadUpdater.root).length;
return Fourchan.parseThread(threadID, length - count, length);
@@ -7464,6 +7741,7 @@
ThreadWatcher = {
init: function() {
var now, sc;
+
if (!Conf['Thread Watcher']) {
return;
}
@@ -7496,6 +7774,7 @@
}
$.get('WatchedThreads', null, function(_arg) {
var WatchedThreads, boardID, data, threadID, threads, _ref;
+
WatchedThreads = _arg.WatchedThreads;
if (!WatchedThreads) {
return;
@@ -7521,6 +7800,7 @@
},
node: function() {
var toggler;
+
toggler = $.el('img', {
className: 'watcher-toggler'
});
@@ -7542,6 +7822,7 @@
}
return $.get('AutoWatch', 0, function(_arg) {
var AutoWatch, thread;
+
AutoWatch = _arg.AutoWatch;
if (!(thread = g.BOARD.threads[AutoWatch])) {
return;
@@ -7557,6 +7838,7 @@
cb: {
openAll: function() {
var a, _i, _len, _ref;
+
if ($.hasClass(this, 'disabled')) {
return;
}
@@ -7575,6 +7857,7 @@
},
pruneDeads: function() {
var boardID, data, threadID, _i, _len, _ref, _ref1;
+
if ($.hasClass(this, 'disabled')) {
return;
}
@@ -7598,11 +7881,13 @@
},
rm: function() {
var boardID, threadID, _ref;
+
_ref = this.parentNode.dataset.fullID.split('.'), boardID = _ref[0], threadID = _ref[1];
return ThreadWatcher.rm(boardID, +threadID);
},
post: function(e) {
var board, postID, threadID, _ref;
+
_ref = e.detail, board = _ref.board, postID = _ref.postID, threadID = _ref.threadID;
if (postID === threadID) {
if (Conf['Auto Watch']) {
@@ -7614,6 +7899,7 @@
},
threadUpdate: function(e) {
var thread;
+
thread = e.detail.thread;
if (!(e.detail[404] && ThreadWatcher.db.get({
boardID: thread.board.ID,
@@ -7630,6 +7916,7 @@
},
fetchAllStatus: function() {
var thread, _i, _len, _ref;
+
ThreadWatcher.status.textContent = '...';
_ref = ThreadWatcher.getAll();
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -7639,6 +7926,7 @@
},
fetchStatus: function(_arg) {
var boardID, data, fetchCount, threadID;
+
boardID = _arg.boardID, threadID = _arg.threadID, data = _arg.data;
if (data.isDead) {
return;
@@ -7648,6 +7936,7 @@
return $.ajax("//api.4chan.org/" + boardID + "/res/" + threadID + ".json", {
onloadend: function() {
var status;
+
fetchCount.fetched++;
if (fetchCount.fetched === fetchCount.fetching) {
fetchCount.fetched = 0;
@@ -7678,6 +7967,7 @@
},
getAll: function() {
var all, boardID, data, threadID, threads, _ref;
+
all = [];
_ref = ThreadWatcher.db.data.boards;
for (boardID in _ref) {
@@ -7698,6 +7988,7 @@
},
makeLine: function(boardID, threadID, data) {
var div, fullID, href, link, x;
+
x = $.el('a', {
textContent: '×',
href: 'javascript:;'
@@ -7728,6 +8019,7 @@
},
refresh: function() {
var boardID, data, list, nodes, refresher, thread, threadID, toggler, watched, _i, _j, _len, _len1, _ref, _ref1, _ref2, _ref3;
+
nodes = [];
_ref = ThreadWatcher.getAll();
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -7755,6 +8047,7 @@
},
toggle: function(thread) {
var boardID, threadID;
+
boardID = thread.board.ID;
threadID = thread.ID;
if (ThreadWatcher.db.get({
@@ -7768,6 +8061,7 @@
},
add: function(thread) {
var boardID, data, threadID;
+
data = {};
boardID = thread.board.ID;
threadID = thread.ID;
@@ -7798,6 +8092,7 @@
},
convert: function(oldFormat) {
var boardID, data, newFormat, threadID, threads;
+
newFormat = {};
for (boardID in oldFormat) {
threads = oldFormat[boardID];
@@ -7814,6 +8109,7 @@
refreshers: [],
init: function() {
var menu;
+
if (!Conf['Thread Watcher']) {
return;
}
@@ -7826,6 +8122,7 @@
},
addHeaderMenuEntry: function() {
var entryEl;
+
if (g.VIEW !== 'thread') {
return;
}
@@ -7842,6 +8139,7 @@
});
return this.refreshers.push(function() {
var addClass, rmClass, text, _ref;
+
_ref = $('.current', ThreadWatcher.list) ? ['unwatch-thread', 'watch-thread', 'Unwatch thread'] : ['watch-thread', 'unwatch-thread', 'Watch thread'], addClass = _ref[0], rmClass = _ref[1], text = _ref[2];
$.addClass(entryEl, addClass);
$.rmClass(entryEl, rmClass);
@@ -7850,6 +8148,7 @@
},
addMenuEntries: function() {
var cb, conf, entries, entry, name, refresh, subEntries, _i, _len, _ref, _ref1, _results;
+
entries = [];
entries.push({
cb: ThreadWatcher.cb.openAll,
@@ -7920,6 +8219,7 @@
},
createSubEntry: function(name, desc) {
var entry, input;
+
entry = {
type: 'thread watcher',
el: $.el('label', {
@@ -7971,6 +8271,7 @@
},
ready: function() {
var ID, post, posts, _ref;
+
$.off(d, '4chanXInitFinished', Unread.ready);
posts = [];
_ref = Unread.thread.posts;
@@ -7987,6 +8288,7 @@
},
scroll: function() {
var checkPosition, hash, onload, post, posts, root;
+
if ((hash = location.hash.match(/\d+/)) && hash[0] in Unread.thread.posts) {
return;
}
@@ -8016,6 +8318,7 @@
}
checkPosition = function(target) {
var height, top, _ref;
+
_ref = target.getBoundingClientRect(), top = _ref.top, height = _ref.height;
return top + height - doc.clientHeight > 0;
};
@@ -8023,6 +8326,7 @@
},
sync: function() {
var lastReadPost;
+
lastReadPost = Unread.db.get({
boardID: Unread.thread.board.ID,
threadID: Unread.thread.ID,
@@ -8039,6 +8343,7 @@
},
addPosts: function(posts) {
var ID, data, post, _i, _len;
+
for (_i = 0, _len = posts.length; _i < _len; _i++) {
post = posts[_i];
ID = post.ID;
@@ -8066,6 +8371,7 @@
},
addPostQuotingYou: function(post) {
var quotelink, _i, _len, _ref;
+
if (!QR.db) {
return;
}
@@ -8086,6 +8392,7 @@
},
readSinglePost: function(post) {
var i;
+
if ((i = Unread.posts.indexOf(post)) === -1) {
return;
}
@@ -8101,6 +8408,7 @@
},
readArray: function(arr) {
var i, post, _i, _len;
+
for (i = _i = 0, _len = arr.length; _i < _len; i = ++_i) {
post = arr[i];
if (post.ID > Unread.lastReadPost) {
@@ -8111,6 +8419,7 @@
},
read: $.debounce(50, function(e) {
var ID, bottom, height, i, post, posts;
+
if (d.hidden || !Unread.posts.length) {
return;
}
@@ -8166,6 +8475,7 @@
}),
setLine: function(force) {
var post, root;
+
if (!(d.hidden || force === true)) {
return;
}
@@ -8180,6 +8490,7 @@
},
update: function() {
var count;
+
count = Unread.posts.length;
if (Conf['Unread Count']) {
d.title = "" + (Conf['Quoted Title'] && Unread.postsQuotingYou.length ? '(!) ' : '') + (count || !Conf['Hide Unread Count at (0)'] ? "(" + count + ") " : '') + (g.DEAD ? "/" + g.BOARD + "/ - 404" : "" + Unread.title);
@@ -8200,6 +8511,7 @@
},
init: function() {
var archive, boardID, boards, data, id, name, type, _i, _len, _ref, _ref1, _ref2;
+
_ref = Conf['selectedArchives'];
for (boardID in _ref) {
data = _ref[boardID];
@@ -8331,6 +8643,7 @@
},
to: function(dest, data) {
var archive;
+
archive = (dest === 'search' ? Redirect.data.thread : Redirect.data[dest])[data.boardID];
if (!archive) {
return '';
@@ -8339,6 +8652,7 @@
},
protocol: function(archive) {
var protocol;
+
protocol = location.protocol;
if (!archive[protocol.slice(0, -1)]) {
protocol = protocol === 'https:' ? 'http:' : 'https:';
@@ -8347,6 +8661,7 @@
},
thread: function(archive, _arg) {
var boardID, path, postID, threadID;
+
boardID = _arg.boardID, threadID = _arg.threadID, postID = _arg.postID;
path = threadID ? "" + boardID + "/thread/" + threadID : "" + boardID + "/post/" + postID;
if (archive.software === 'foolfuuka') {
@@ -8359,6 +8674,7 @@
},
post: function(archive, _arg) {
var URL, boardID, postID, protocol;
+
boardID = _arg.boardID, postID = _arg.postID;
protocol = Redirect.protocol(archive);
if (['Foolz', 'NSFW Foolz'].contains(archive.name)) {
@@ -8370,11 +8686,13 @@
},
file: function(archive, _arg) {
var boardID, filename;
+
boardID = _arg.boardID, filename = _arg.filename;
return "" + (Redirect.protocol(archive)) + archive.domain + "/" + boardID + "/full_image/" + filename;
},
search: function(archive, _arg) {
var boardID, path, type, value;
+
boardID = _arg.boardID, type = _arg.type, value = _arg.value;
type = type === 'name' ? 'username' : type === 'MD5' ? 'image' : type;
value = encodeURIComponent(value);
@@ -8393,6 +8711,7 @@
},
setup: function() {
var btn, entry, psa;
+
$.off(d, '4chanXInitFinished', PSAHiding.setup);
if (!(psa = $.id('globalMessage'))) {
$.rmClass(doc, 'hide-announcement');
@@ -8421,6 +8740,7 @@
$.on(btn, 'click', PSAHiding.toggle);
$.get('hiddenPSA', 0, function(_arg) {
var hiddenPSA;
+
hiddenPSA = _arg.hiddenPSA;
PSAHiding.sync(hiddenPSA);
$.before(psa, btn);
@@ -8430,6 +8750,7 @@
},
toggle: function(e) {
var UTC;
+
if ($.hasClass(this, 'hide-announcement')) {
UTC = +$.id('globalMessage').dataset.utc;
$.set('hiddenPSA', UTC);
@@ -8441,6 +8762,7 @@
},
sync: function(UTC) {
var hr, psa;
+
psa = $.id('globalMessage');
psa.hidden = PSAHiding.btn.hidden = UTC && UTC >= +psa.dataset.utc ? true : false;
if ((hr = psa.nextElementSibling) && hr.nodeName === 'HR') {
@@ -8452,6 +8774,7 @@
CatalogLinks = {
init: function() {
var el, input;
+
if (!Conf['Catalog Links']) {
return;
}
@@ -8475,12 +8798,14 @@
},
toggle: function() {
var useCatalog;
+
$.event('CloseMenu');
$.set('Header catalog links', useCatalog = this.checked);
return CatalogLinks.set(useCatalog);
},
set: function(useCatalog) {
var a, board, path, _i, _len, _ref;
+
path = useCatalog ? 'catalog' : '';
_ref = $$("#board-list a[href*=\"boards.4chan.org\"]:not(.catalog),\n#boardNavDesktopFoot a[href*=\"boards.4chan.org\"]");
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -8514,6 +8839,7 @@
},
node: function() {
var str, uid;
+
if (this.isClone || !(str = this.info.uniqueID)) {
return;
}
@@ -8526,6 +8852,7 @@
ids: {},
compute: function(str) {
var hash, rgb;
+
hash = IDColor.hash(str);
rgb = [(hash >> 24) & 0xFF, (hash >> 16) & 0xFF, (hash >> 8) & 0xFF];
rgb[3] = ((rgb[0] * 0.299) + (rgb[1] * 0.587) + (rgb[2] * 0.114)) > 125;
@@ -8537,6 +8864,7 @@
},
hash: function(str) {
var i, j, msg;
+
msg = 0;
i = 0;
j = str.length;
@@ -8584,6 +8912,7 @@
},
node: function() {
var dicestats, roll, _ref;
+
if (this.isClone || !(dicestats = (_ref = this.info.email) != null ? _ref.match(/dice[+\s](\d+)d(\d+)/) : void 0)) {
return;
}
@@ -8595,6 +8924,7 @@
Emoji = {
init: function() {
var css, icon, name, pos, _ref;
+
if (!Conf['Emoji']) {
return;
}
@@ -8664,6 +8994,7 @@
},
node: function() {
var a;
+
if (a = $('.abbr > a:not([onclick])', this.nodes.comment)) {
return $.on(a, 'click', ExpandComment.cb);
}
@@ -8675,6 +9006,7 @@
},
expand: function(post) {
var a;
+
if (post.nodes.longComment && !post.nodes.longComment.parentNode) {
$.replace(post.nodes.shortComment, post.nodes.longComment);
post.nodes.comment = post.nodes.longComment;
@@ -8690,6 +9022,7 @@
},
contract: function(post) {
var a;
+
if (!post.nodes.shortComment) {
return;
}
@@ -8700,6 +9033,7 @@
},
parse: function(req, a, post) {
var callback, clone, comment, href, postObj, posts, quote, spoilerRange, status, _i, _j, _k, _len, _len1, _len2, _ref, _ref1;
+
status = req.status;
if (![200, 304].contains(status)) {
a.textContent = "Error " + req.statusText + " (" + status + ")";
@@ -8762,6 +9096,7 @@
},
node: function() {
var a, files, posts, span, _ref;
+
if (!(span = $.x('following-sibling::span[contains(@class,"summary")][1]', this.OP.nodes.root))) {
return;
}
@@ -8782,6 +9117,7 @@
},
toggle: function(thread) {
var a, files, filesCount, inlined, num, post, posts, postsCount, reply, threadRoot, _i, _j, _k, _len, _len1, _len2, _ref, _ref1, _ref2, _ref3, _ref4;
+
threadRoot = thread.OP.nodes.root.parentNode;
a = $('.summary', threadRoot);
switch (thread.isExpanded) {
@@ -8859,6 +9195,7 @@
},
parse: function(req, thread, a) {
var filesCount, link, post, posts, postsCount, postsObj, postsRoot, reply, root, spoilerRange, _i, _len;
+
if (a.textContent[0] === '+') {
return;
}
@@ -8922,6 +9259,7 @@
},
createFunc: function(format) {
var code;
+
code = format.replace(/%(.)/g, function(s, c) {
if (c in FileInfo.formatters) {
return "' + FileInfo.formatters." + c + ".call(post) + '";
@@ -8933,6 +9271,7 @@
},
convertUnit: function(size, unit) {
var i;
+
if (unit === 'B') {
return "" + (size.toFixed()) + " Bytes";
}
@@ -8963,6 +9302,7 @@
},
n: function() {
var fullname, shortname;
+
fullname = this.file.name;
shortname = Build.shortFilename(this.file.name, this.isReply);
if (fullname === shortname) {
@@ -9006,6 +9346,7 @@
Fourchan = {
init: function() {
var board;
+
if (g.VIEW === 'catalog') {
return;
}
@@ -9027,6 +9368,7 @@
},
code: function() {
var pre, _i, _len, _ref;
+
if (this.isClone) {
return;
}
@@ -9056,11 +9398,13 @@
Keybinds = {
init: function() {
var init;
+
if (g.VIEW === 'catalog' || !Conf['Keybinds']) {
return;
}
init = function() {
var node, _i, _len, _ref;
+
$.off(d, '4chanXInitFinished', init);
$.on(d, 'keydown', Keybinds.keydown);
_ref = $$('[accesskey]');
@@ -9073,6 +9417,7 @@
},
keydown: function(e) {
var form, key, notification, notifications, op, target, thread, threadRoot, _i, _len;
+
if (!(key = Keybinds.keyCode(e))) {
return;
}
@@ -9253,6 +9598,7 @@
},
keyCode: function(e) {
var kc, key;
+
key = (function() {
switch (kc = e.keyCode) {
case 8:
@@ -9308,6 +9654,7 @@
},
tags: function(tag, ta) {
var range, selEnd, selStart, value;
+
value = ta.value;
selStart = ta.selectionStart;
selEnd = ta.selectionEnd;
@@ -9318,11 +9665,13 @@
},
sage: function() {
var isSage;
+
isSage = /sage/i.test(QR.nodes.email.value);
return QR.nodes.email.value = isSage ? "" : "sage";
},
img: function(thread, all) {
var post;
+
if (all) {
return ImageExpand.cb.toggleAll();
} else {
@@ -9332,6 +9681,7 @@
},
open: function(thread, tab) {
var url;
+
if (g.VIEW !== 'index') {
return;
}
@@ -9344,6 +9694,7 @@
},
hl: function(delta, thread) {
var axe, headRect, next, postEl, rect, replies, reply, root, topMargin, _i, _len;
+
if (!delta) {
if (postEl = $('.reply.highlight', thread)) {
$.rmClass(postEl, 'highlight');
@@ -9403,6 +9754,7 @@
Nav = {
init: function() {
var append, next, prev, span;
+
switch (g.VIEW) {
case 'index':
if (!Conf['Index Navigation']) {
@@ -9453,6 +9805,7 @@
},
getThread: function(full) {
var headRect, i, rect, thread, threads, topMargin, _i, _len;
+
if (Conf['Bottom header'] || !Conf['Fixed Header']) {
topMargin = 0;
} else {
@@ -9478,6 +9831,7 @@
},
scroll: function(delta) {
var i, rect, thread, threads, top, topMargin, _ref, _ref1;
+
_ref = Nav.getThread(true), threads = _ref[0], thread = _ref[1], i = _ref[2], rect = _ref[3], topMargin = _ref[4];
top = rect.top - topMargin;
if ((delta === -1 && top > -5) || (delta === +1 && top < 5)) {
@@ -9502,6 +9856,7 @@
},
node: function() {
var dateEl;
+
if (this.isClone) {
return;
}
@@ -9511,6 +9866,7 @@
},
relative: function(diff, now, date) {
var days, months, number, rounded, unit, years;
+
unit = (number = diff / $.DAY) >= 1 ? (years = now.getYear() - date.getYear(), months = now.getMonth() - date.getMonth(), days = now.getDate() - date.getDate(), years > 1 ? (number = years - (months < 0 || months === 0 && days < 0), 'year') : years === 1 && (months > 0 || months === 0 && days >= 0) ? (number = years, 'year') : (months = (months + 12) % 12) > 1 ? (number = months - (days < 0), 'month') : months === 1 && days >= 0 ? (number = months, 'month') : 'day') : (number = diff / $.HOUR) >= 1 ? 'hour' : (number = diff / $.MINUTE) >= 1 ? 'minute' : (number = Math.max(0, diff) / $.SECOND, 'second');
rounded = Math.round(number);
if (rounded !== 1) {
@@ -9521,6 +9877,7 @@
stale: [],
flush: function() {
var now, update, _i, _len, _ref;
+
if (d.hidden) {
return;
}
@@ -9536,13 +9893,16 @@
},
setUpdate: function(post) {
var markStale, setOwnTimeout, update;
+
setOwnTimeout = function(diff) {
var delay;
+
delay = diff < $.MINUTE ? $.SECOND - (diff + $.SECOND / 2) % $.SECOND : diff < $.HOUR ? $.MINUTE - (diff + $.MINUTE / 2) % $.MINUTE : diff < $.DAY ? $.HOUR - (diff + $.HOUR / 2) % $.HOUR : $.DAY - (diff + $.DAY / 2) % $.DAY;
return setTimeout(markStale, delay);
};
update = function(now) {
var date, diff, relative, singlePost, _i, _len, _ref;
+
date = post.info.date;
diff = now - date;
relative = RelativeDates.relative(diff, now, date);
@@ -9583,6 +9943,7 @@
},
node: function(post) {
var spoiler, spoilers, _i, _len;
+
spoilers = $$('s', this.nodes.comment);
for (_i = 0, _len = spoilers.length; _i < _len; _i++) {
spoiler = spoilers[_i];
@@ -9602,6 +9963,7 @@
},
ready: function() {
var field;
+
field = $.id('recaptcha_response_field');
$.on(field, 'keydown', function(e) {
if (e.keyCode === 8 && !field.value) {
@@ -9610,6 +9972,7 @@
});
return $.on($('form'), 'submit', function(e) {
var response;
+
e.preventDefault();
response = field.value.trim();
if (!/\s/.test(response)) {
@@ -9639,6 +10002,7 @@
},
createFunc: function(format) {
var code;
+
code = format.replace(/%([A-Za-z])/g, function(s, c) {
if (c in Time.formatters) {
return "' + Time.formatters." + c + ".call(date) + '";
@@ -9723,6 +10087,7 @@
Settings = {
init: function() {
var link, settings;
+
link = $.el('a', {
className: 'settings-link',
textContent: 'Settings',
@@ -9732,6 +10097,7 @@
Header.addShortcut(link);
$.get('previousversion', null, function(item) {
var changelog, el, previous;
+
if (previous = item['previousversion']) {
if (previous === g.VERSION) {
return;
@@ -9770,6 +10136,7 @@
},
open: function(openSection) {
var dialog, html, link, links, overlay, section, sectionToOpen, _i, _len, _ref;
+
$.off(d, '4chanXInitFinished', Settings.open);
if (Settings.dialog) {
return;
@@ -9822,6 +10189,7 @@
sections: [],
addSection: function(title, open) {
var hyphenatedTitle, _ref;
+
if (typeof title !== 'string') {
_ref = title.detail, title = _ref.title, open = _ref.open;
}
@@ -9834,6 +10202,7 @@
},
openSection: function() {
var section, selected;
+
if (selected = $('.tab-selected', Settings.dialog)) {
$.rmClass(selected, 'tab-selected');
}
@@ -9847,6 +10216,7 @@
},
main: function(section) {
var arr, button, description, div, fs, hiddenNum, input, inputs, items, key, obj, _ref;
+
items = {};
inputs = {};
_ref = Config.main;
@@ -9871,6 +10241,7 @@
}
$.get(items, function(items) {
var val;
+
for (key in items) {
val = items[key];
inputs[key].checked = val;
@@ -9885,6 +10256,7 @@
boards: {}
}, function(item) {
var ID, board, thread, _ref1;
+
_ref1 = item.hiddenThreads.boards;
for (ID in _ref1) {
board = _ref1[ID];
@@ -9899,6 +10271,7 @@
boards: {}
}, function(item) {
var ID, board, post, thread, _ref1;
+
_ref1 = item.hiddenPosts.boards;
for (ID in _ref1) {
board = _ref1[ID];
@@ -9918,6 +10291,7 @@
boards: {}
}, function(item) {
var boardID;
+
for (boardID in item.hiddenThreads.boards) {
localStorage.removeItem("4chan-hide-t-" + boardID);
}
@@ -9928,6 +10302,7 @@
},
"export": function(now, data) {
var a, db, p, _i, _len;
+
if (typeof now !== 'number') {
now = Date.now();
data = {
@@ -9963,6 +10338,7 @@
},
onImport: function() {
var file, output, reader;
+
if (!(file = this.files[0])) {
return;
}
@@ -9974,6 +10350,7 @@
reader = new FileReader();
reader.onload = function(e) {
var data, err;
+
try {
data = JSON.parse(e.target.result);
Settings.loadSettings(data);
@@ -9990,6 +10367,7 @@
},
loadSettings: function(data) {
var key, val, version, _ref;
+
version = data.version.split('.');
if (version[0] === '2') {
data = Settings.convertSettings(data, {
@@ -10077,6 +10455,7 @@
},
convertSettings: function(data, map) {
var newKey, prevKey;
+
for (prevKey in map) {
newKey = map[prevKey];
if (newKey) {
@@ -10088,6 +10467,7 @@
},
filter: function(section) {
var select;
+
section.innerHTML = "";
select = $('select', section);
$.on(select, 'change', Settings.selectFilter);
@@ -10095,6 +10475,7 @@
},
selectFilter: function() {
var div, name, ta;
+
div = this.nextElementSibling;
if ((name = this.value) !== 'guide') {
$.rmAll(div);
@@ -10114,6 +10495,7 @@
},
sauce: function(section) {
var ta;
+
section.innerHTML = " Sauce is disabled.
Lines starting with a # will be ignored.
You can specify a display text by appending ;text:[text] to the URL.
These parameters will be replaced by their corresponding values:\n%TURL: Thumbnail URL.%URL: Full image URL.%MD5: MD5 hash.%board: Current board.
";
ta = $('textarea', section);
$.get('sauces', Conf['sauces'], function(item) {
@@ -10123,6 +10505,7 @@
},
advanced: function(section) {
var archive, boardID, boardOptions, boardSelect, boards, data, event, input, inputs, item, items, name, row, rows, ta, table, _i, _j, _k, _l, _len, _len1, _len2, _len3, _ref, _ref1, _ref2, _ref3, _ref4;
+
section.innerHTML = " ";
items = {};
inputs = {};
@@ -10142,6 +10525,7 @@
$.on(ta, 'change', $.cb.value);
$.get(items, function(items) {
var key, val;
+
for (key in items) {
val = items[key];
if (['emojiPos'].contains(key)) {
@@ -10212,6 +10596,7 @@
});
$.get('selectedArchives', Conf['selectedArchives'], function(_arg) {
var option, selectedArchives, type;
+
selectedArchives = _arg.selectedArchives;
for (boardID in selectedArchives) {
data = selectedArchives[boardID];
@@ -10226,6 +10611,7 @@
},
addArchiveCell: function(boardID, data, type) {
var archive, i, length, options, select, td;
+
length = data[type].length;
td = $.el('td', {
className: 'archive-cell'
@@ -10255,8 +10641,10 @@
},
saveSelectedArchive: function() {
var _this = this;
+
return $.get('selectedArchives', Conf['selectedArchives'], function(_arg) {
var selectedArchives, _name;
+
selectedArchives = _arg.selectedArchives;
(selectedArchives[_name = _this.dataset.boardid] || (selectedArchives[_name] = {}))[_this.dataset.type] = _this.value;
return $.set('selectedArchives', selectedArchives);
@@ -10267,6 +10655,7 @@
},
time: function() {
var funk;
+
funk = Time.createFunc(this.value);
return this.nextElementSibling.textContent = funk(Time, new Date());
},
@@ -10275,6 +10664,7 @@
},
fileInfo: function() {
var data, funk;
+
data = {
isReply: true,
file: {
@@ -10313,6 +10703,7 @@
},
keybinds: function(section) {
var arr, input, inputs, items, key, tbody, tr, _ref;
+
section.innerHTML = "Keybinds are disabled.
Allowed keys: a-z, 0-9, Ctrl, Shift, Alt, Meta, Enter, Esc, Up, Down, Right, Left.
Press Backspace to disable a keybind.
";
tbody = $('tbody', section);
items = {};
@@ -10333,6 +10724,7 @@
}
return $.get(items, function(items) {
var val;
+
for (key in items) {
val = items[key];
inputs[key].value = val;
@@ -10341,6 +10733,7 @@
},
keybind: function(e) {
var key;
+
if (e.keyCode === 9) {
return;
}
@@ -10357,8 +10750,10 @@
Main = {
init: function(items) {
var db, flatten, _i, _len;
+
flatten = function(parent, obj) {
var key, val;
+
if (obj instanceof Array) {
Conf[parent] = obj[0];
} else if (typeof obj === 'object') {
@@ -10387,6 +10782,7 @@
},
initFeatures: function(items) {
var init, pathname, _ref;
+
Conf = items;
pathname = location.pathname.split('/');
g.BOARD = new Board(pathname[1]);
@@ -10415,6 +10811,7 @@
case 'images.4chan.org':
$.ready(function() {
var URL;
+
if (Conf['404 Redirect'] && ['4chan - Temporarily Offline', '4chan - 404 Not Found'].contains(d.title)) {
Redirect.init();
pathname = location.pathname.split('/');
@@ -10431,6 +10828,7 @@
}
init = function(features) {
var err, module, name;
+
for (name in features) {
module = features[name];
try {
@@ -10508,6 +10906,7 @@
},
initStyle: function() {
var mainStyleSheet, setStyle, style, styleSheets, _ref;
+
$.off(d, '4chanMainInit', Main.initStyle);
if (!Main.isThisPageLegit() || $.hasClass(doc, 'fourchan-x')) {
return;
@@ -10528,6 +10927,7 @@
styleSheets = $$('link[rel="alternate stylesheet"]', d.head);
setStyle = function() {
var styleSheet, _i, _len;
+
$.rmClass(doc, style);
for (_i = 0, _len = styleSheets.length; _i < _len; _i++) {
styleSheet = styleSheets[_i];
@@ -10549,6 +10949,7 @@
},
initReady: function() {
var board, err, errors, href, passLink, postRoot, posts, styleSelector, thread, threadRoot, threads, _i, _j, _len, _len1, _ref, _ref1;
+
if (d.title === '4chan - 404 Not Found') {
if (Conf['404 Redirect'] && g.VIEW === 'thread') {
href = Redirect.to('thread', {
@@ -10617,6 +11018,7 @@
},
callbackNodes: function(klass, nodes) {
var callback, err, errors, i, len, node, _i, _len, _ref;
+
len = nodes.length;
_ref = klass.prototype.callbacks;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -10644,9 +11046,11 @@
},
callbackNodesDB: function(klass, nodes, cb) {
var errors, func, i, len, node, queue, softTask;
+
queue = [];
softTask = function() {
var args, func, task;
+
task = queue.shift();
func = task[0];
args = Array.prototype.slice.call(task, 1);
@@ -10665,6 +11069,7 @@
errors = null;
func = function(node, i) {
var callback, err, _i, _len, _ref;
+
_ref = klass.prototype.callbacks;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
callback = _ref[_i];
@@ -10698,6 +11103,7 @@
},
addCallback: function(e) {
var Klass, obj;
+
obj = e.detail;
if (typeof obj.callback.name !== 'string') {
throw new Error("Invalid callback name: " + obj.callback.name);
@@ -10717,6 +11123,7 @@
},
handleErrors: function(errors) {
var div, error, logs, _i, _len;
+
if (!(errors instanceof Array)) {
error = errors;
} else if (errors.length === 1) {
@@ -10731,6 +11138,7 @@
});
$.on(div.lastElementChild, 'click', function() {
var _ref;
+
return _ref = this.textContent === 'show' ? ['hide', false] : ['show', true], this.textContent = _ref[0], logs.hidden = _ref[1], _ref;
});
logs = $.el('div', {
@@ -10744,6 +11152,7 @@
},
parseError: function(data) {
var error, message;
+
Main.logError(data);
message = $.el('div', {
textContent: data.message
@@ -10760,6 +11169,7 @@
},
isThisPageLegit: function() {
var _ref;
+
if (!('thisPageIsLegit' in Main)) {
Main.thisPageIsLegit = location.hostname === 'boards.4chan.org' && !$('link[href*="favicon-status.ico"]', d.head) && ((_ref = d.title) !== '4chan - Temporarily Offline' && _ref !== '4chan - Error' && _ref !== '504 Gateway Time-out');
}
diff --git a/builds/crx/script.js b/builds/crx/script.js
index 823946fe2..2698cabb2 100644
--- a/builds/crx/script.js
+++ b/builds/crx/script.js
@@ -329,6 +329,7 @@
Array.prototype.indexOf = function(object) {
var i;
+
i = this.length;
while (i--) {
if (this[i] === object) {
@@ -347,6 +348,7 @@
$.extend = function(object, properties) {
var key, val;
+
for (key in properties) {
val = properties[key];
if (!properties.hasOwnProperty(key)) {
@@ -364,6 +366,7 @@
$.ready = function(fc) {
var cb;
+
if (d.readyState !== 'loading') {
$.queueTask(fc);
return;
@@ -377,6 +380,7 @@
$.formData = function(form) {
var fd, key, val;
+
if (form instanceof HTMLFormElement) {
return new FormData(form);
}
@@ -396,6 +400,7 @@
$.extend = function(object, properties) {
var key, val;
+
for (key in properties) {
val = properties[key];
object[key] = val;
@@ -404,9 +409,11 @@
$.ajax = (function() {
var lastModified;
+
lastModified = {};
return function(url, options, extra) {
var form, r, sync, type, upCallbacks, whenModified;
+
if (extra == null) {
extra = {};
}
@@ -429,9 +436,11 @@
$.cache = (function() {
var reqs;
+
reqs = {};
return function(url, cb, options) {
var err, req, rm;
+
if (req = reqs[url]) {
if (req.readyState === 4) {
cb.call(req, req.evt);
@@ -451,6 +460,7 @@
}
$.on(req, 'load', function(e) {
var _i, _len, _ref;
+
_ref = this.callbacks;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
cb = _ref[_i];
@@ -486,6 +496,7 @@
$.addStyle = function(css, id) {
var style;
+
style = $.el('style', {
id: id,
textContent: css
@@ -532,6 +543,7 @@
} else {
return function(el) {
var _ref;
+
return (_ref = el.parentNode) != null ? _ref.removeChild(el) : void 0;
};
}
@@ -539,6 +551,7 @@
$.rmAll = function(root) {
var node;
+
while (node = root.firstChild) {
root.removeChild(node);
}
@@ -554,6 +567,7 @@
$.nodes = function(nodes) {
var frag, node, _i, _len;
+
if (!(nodes instanceof Array)) {
return nodes;
}
@@ -587,6 +601,7 @@
$.el = function(tag, properties) {
var el;
+
el = d.createElement(tag);
if (properties) {
$.extend(el, properties);
@@ -596,6 +611,7 @@
$.on = function(el, events, handler) {
var event, _i, _len, _ref;
+
_ref = events.split(' ');
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
event = _ref[_i];
@@ -605,6 +621,7 @@
$.off = function(el, events, handler) {
var event, _i, _len, _ref;
+
_ref = events.split(' ');
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
event = _ref[_i];
@@ -628,6 +645,7 @@
$.debounce = function(wait, fn) {
var args, exec, lastCall, that, timeout;
+
lastCall = 0;
timeout = null;
that = null;
@@ -649,9 +667,11 @@
$.queueTask = (function() {
var execTask, taskChannel, taskQueue;
+
taskQueue = [];
execTask = function() {
var args, func, task;
+
task = taskQueue.shift();
func = task[0];
args = Array.prototype.slice.call(task, 1);
@@ -674,6 +694,7 @@
$.globalEval = function(code) {
var script;
+
script = $.el('script', {
textContent: code
});
@@ -683,6 +704,7 @@
$.bytesToString = function(size) {
var unit;
+
unit = 0;
while (size >= 1024) {
size /= 1024;
@@ -698,6 +720,7 @@
$.item = function(key, val) {
var item;
+
item = {};
item[key] = val;
return item;
@@ -708,6 +731,7 @@
$.sync = (function() {
chrome.storage.onChanged.addListener(function(changes) {
var cb, key;
+
for (key in changes) {
if (cb = $.syncing[key]) {
cb(changes[key].newValue);
@@ -727,6 +751,7 @@
$.get = function(key, val, cb) {
var count, done, items, localItems, syncItems;
+
if (typeof cb === 'function') {
items = $.item(key, val);
} else {
@@ -746,6 +771,7 @@
count = 0;
done = function(item) {
var lastError;
+
lastError = chrome.runtime.lastError;
if (lastError) {
c.error(lastError, lastError.message || 'No message.');
@@ -767,10 +793,12 @@
$.set = (function() {
var items, localItems, set;
+
items = {};
localItems = {};
set = $.debounce($.SECOND, function() {
var err, key, _i, _len, _ref;
+
_ref = $.localKeys;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
key = _ref[_i];
@@ -855,6 +883,7 @@
function Post(root, thread, board, that) {
var capcode, date, email, flag, info, name, post, subject, tripcode, uniqueID;
+
this.thread = thread;
this.board = board;
if (that == null) {
@@ -930,6 +959,7 @@
Post.prototype.parseComment = function() {
var bq, i, node, nodes, text;
+
bq = this.nodes.comment.cloneNode(true);
nodes = $$('.abbr, .capcodeReplies, .exif, b', bq);
i = 0;
@@ -947,6 +977,7 @@
Post.prototype.parseQuotes = function() {
var quotelink, _i, _len, _ref;
+
this.quotes = [];
_ref = $$('.quotelink', this.nodes.comment);
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -957,6 +988,7 @@
Post.prototype.parseQuote = function(quotelink) {
var fullID, match;
+
if (!(match = quotelink.href.match(/boards\.4chan\.org\/([^\/]+)\/res\/\d+#p(\d+)$/))) {
return;
}
@@ -972,6 +1004,7 @@
Post.prototype.parseFile = function(that) {
var alt, anchor, fileEl, fileInfo, size, thumb, unit;
+
if (!((fileEl = $('.file', this.nodes.post)) && (thumb = $('img[data-md5]', fileEl)))) {
return;
}
@@ -1003,6 +1036,7 @@
Post.prototype.kill = function(file, now) {
var clone, quotelink, strong, _i, _j, _len, _len1, _ref, _ref1;
+
now || (now = new Date());
if (file) {
if (this.file.isDead) {
@@ -1051,6 +1085,7 @@
Post.prototype.resurrect = function() {
var clone, quotelink, strong, _i, _j, _len, _len1, _ref, _ref1;
+
delete this.isDead;
delete this.timeOfDeath;
$.rmClass(this.nodes.root, 'deleted-post');
@@ -1084,6 +1119,7 @@
Post.prototype.rmClone = function(index) {
var clone, _i, _len, _ref;
+
this.clones.splice(index, 1);
_ref = this.clones.slice(index);
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -1101,6 +1137,7 @@
function Clone(origin, context) {
var file, info, inline, inlined, key, nodes, post, root, val, _i, _j, _k, _len, _len1, _len2, _ref, _ref1, _ref2, _ref3;
+
this.origin = origin;
this.context = context;
_ref = ['ID', 'fullID', 'board', 'thread', 'info', 'quotes', 'isReply'];
@@ -1188,6 +1225,7 @@
function DataBoard(key, sync, dontClean) {
var init,
_this = this;
+
this.key = key;
this.data = Conf[key];
$.sync(key, this.onSync.bind(this));
@@ -1210,6 +1248,7 @@
DataBoard.prototype["delete"] = function(_arg) {
var boardID, postID, threadID;
+
boardID = _arg.boardID, threadID = _arg.threadID, postID = _arg.postID;
if (postID) {
delete this.data.boards[boardID][threadID][postID];
@@ -1230,6 +1269,7 @@
DataBoard.prototype.deleteIfEmpty = function(_arg) {
var boardID, threadID;
+
boardID = _arg.boardID, threadID = _arg.threadID;
if (threadID) {
if (!Object.keys(this.data.boards[boardID][threadID]).length) {
@@ -1245,6 +1285,7 @@
DataBoard.prototype.set = function(_arg) {
var boardID, postID, threadID, val, _base, _base1, _base2;
+
boardID = _arg.boardID, threadID = _arg.threadID, postID = _arg.postID, val = _arg.val;
if (postID !== void 0) {
((_base = ((_base1 = this.data.boards)[boardID] || (_base1[boardID] = {})))[threadID] || (_base[threadID] = {}))[postID] = val;
@@ -1258,6 +1299,7 @@
DataBoard.prototype.get = function(_arg) {
var ID, board, boardID, defaultValue, postID, thread, threadID, val, _i, _len;
+
boardID = _arg.boardID, threadID = _arg.threadID, postID = _arg.postID, defaultValue = _arg.defaultValue;
if (board = this.data.boards[boardID]) {
if (!threadID) {
@@ -1281,6 +1323,7 @@
DataBoard.prototype.clean = function() {
var boardID, now, val, _ref;
+
_ref = this.data.boards;
for (boardID in _ref) {
val = _ref[boardID];
@@ -1300,8 +1343,10 @@
DataBoard.prototype.ajaxClean = function(boardID) {
var _this = this;
+
return $.cache("//api.4chan.org/" + boardID + "/threads.json", function(e) {
var board, page, thread, threads, _i, _j, _len, _len1, _ref, _ref1;
+
if (e.target.status === 404) {
_this["delete"](boardID);
} else if (e.target.status === 200) {
@@ -1389,8 +1434,10 @@
},
toBlob: function() {
var _base;
+
return (_base = HTMLCanvasElement.prototype).toBlob || (_base.toBlob = function(cb) {
var data, i, l, ui8a, _i;
+
data = atob(this.toDataURL().slice(22));
l = data.length;
ui8a = new Uint8Array(l);
@@ -1428,6 +1475,7 @@
init: function() {
var barFixedToggler, barPositionToggler, customNavToggler, editCustomNav, footerToggler, headerToggler, linkJustifyToggler,
_this = this;
+
this.menu = new UI.Menu('header');
this.menuButton = $.el('span', {
className: 'menu-button',
@@ -1518,6 +1566,7 @@
});
return $.ready(function() {
var a, cs;
+
_this.footer = $.id('boardNavDesktopFoot');
if (a = $("a[href*='/" + g.BOARD + "/']", $.id('boardNavDesktopFoot'))) {
a.className = 'current';
@@ -1551,6 +1600,7 @@
}),
setBoardList: function() {
var a, boardList, btn, fourchannav, fullBoardList;
+
fourchannav = $.id('boardNavDesktop');
if (a = $("a[href*='/" + g.BOARD + "/']", fourchannav)) {
a.className = 'current';
@@ -1572,6 +1622,7 @@
},
generateBoardList: function(text) {
var as, list, nodes;
+
list = $('#custom-board-list', Header.bar);
$.rmAll(list);
if (!text) {
@@ -1580,6 +1631,7 @@
as = $$('#full-board-list a[title]', Header.bar);
nodes = text.match(/[\w@]+((-(all|title|replace|full|index|catalog|url:"[^"]+[^"]"|text:"[^"]+")|\,"[^"]+[^"]"))*|[^\w@]+/g).map(function(t) {
var a, board, m, _i, _len;
+
if (/^[^\w@]/.test(t)) {
return $.tn(t);
}
@@ -1630,6 +1682,7 @@
},
toggleBoardList: function() {
var bar, custom, full, showBoardList;
+
bar = Header.bar;
custom = $('#custom-board-list', bar);
full = $('#full-board-list', bar);
@@ -1665,6 +1718,7 @@
},
toggleLinkJustify: function() {
var centered;
+
$.event('CloseMenu');
centered = this.nodeName === 'INPUT' ? this.checked : void 0;
Header.setLinkJustify(centered);
@@ -1694,6 +1748,7 @@
},
toggleBarVisibility: function(e) {
var hide, message;
+
if (e.type === 'mousedown' && e.button !== 0) {
return;
}
@@ -1710,6 +1765,7 @@
},
toggleFooterVisibility: function() {
var hide, message;
+
$.event('CloseMenu');
hide = this.nodeName === 'INPUT' ? this.checked : !!Header.footer.hidden;
Header.setFooterVisibility(hide);
@@ -1719,6 +1775,7 @@
},
setCustomNav: function(show) {
var btn, cust, full, _ref;
+
Header.customNavToggler.checked = show;
cust = $('#custom-board-list', Header.bar);
full = $('#full-board-list', Header.bar);
@@ -1731,12 +1788,14 @@
},
editCustomNav: function() {
var settings;
+
Settings.open('Advanced');
settings = $.id('fourchanx-settings');
return $('input[name=boardnav]', settings).focus();
},
hashScroll: function() {
var hash, post;
+
if (!((hash = this.location.hash.slice(1)) && (post = $.id(hash)))) {
return;
}
@@ -1747,6 +1806,7 @@
},
scrollToPost: function(post) {
var headRect, top;
+
top = post.getBoundingClientRect().top;
if (Conf['Fixed Header'] && !Conf['Bottom Header']) {
headRect = Header.bar.getBoundingClientRect();
@@ -1756,6 +1816,7 @@
},
addShortcut: function(el) {
var shortcut;
+
shortcut = $.el('span', {
className: 'shortcut fourchanx-link'
});
@@ -1767,6 +1828,7 @@
},
createNotification: function(e) {
var cb, content, lifetime, notif, type, _ref;
+
_ref = e.detail, type = _ref.type, content = _ref.content, lifetime = _ref.lifetime, cb = _ref.cb;
notif = new Notification(type, content, lifetime);
if (cb) {
@@ -1779,6 +1841,7 @@
spoilerRange: {},
shortFilename: function(filename, isReply) {
var threshold;
+
threshold = isReply ? 30 : 40;
if (filename.length - 4 > threshold) {
return "" + filename.slice(0, threshold - 5) + "(...)." + filename.slice(-3);
@@ -1788,6 +1851,7 @@
},
postFromObject: function(data, boardID) {
var o;
+
o = {
postID: data.no,
threadID: data.resto || data.no,
@@ -1832,6 +1896,7 @@
*/
var a, boardID, capcode, capcodeClass, capcodeReplies, capcodeStart, closed, comment, container, date, dateUTC, email, emailEnd, emailStart, ext, file, fileDims, fileHTML, fileInfo, fileSize, fileThumb, filename, flag, flagCode, flagName, href, imgSrc, isClosed, isOP, isSticky, name, postID, quote, shortFilename, spoilerRange, staticPath, sticky, subject, threadID, tripcode, uniqueID, userID, _i, _len, _ref;
+
postID = o.postID, threadID = o.threadID, boardID = o.boardID, name = o.name, capcode = o.capcode, tripcode = o.tripcode, uniqueID = o.uniqueID, email = o.email, subject = o.subject, flagCode = o.flagCode, flagName = o.flagName, date = o.date, dateUTC = o.dateUTC, isSticky = o.isSticky, isClosed = o.isClosed, comment = o.comment, capcodeReplies = o.capcodeReplies, file = o.file;
isOP = postID === threadID;
staticPath = '//static.4chan.org/image/';
@@ -1930,6 +1995,7 @@
},
capcodeReplies: function(_arg) {
var array, boardID, bq, capcodeReplies, capcodeType, generateCapcodeReplies, html, root, threadID;
+
boardID = _arg.boardID, threadID = _arg.threadID, bq = _arg.bq, root = _arg.root, capcodeReplies = _arg.capcodeReplies;
if (!capcodeReplies) {
return;
@@ -1966,6 +2032,7 @@
Get = {
threadExcerpt: function(thread) {
var OP, excerpt, _ref;
+
OP = thread.OP;
excerpt = ((_ref = OP.info.subject) != null ? _ref.trim() : void 0) || OP.info.comment.replace(/\n+/g, ' // ') || Conf['Anonymize'] && 'Anonymous' || $('.nameBlock', OP.nodes.info).textContent.trim();
if (excerpt.length > 70) {
@@ -1978,6 +2045,7 @@
},
postFromRoot: function(root) {
var boardID, index, link, post, postID;
+
link = $('a[title="Highlight this post"]', root);
boardID = link.pathname.split('/')[1];
postID = link.hash.slice(2);
@@ -1997,6 +2065,7 @@
},
postDataFromLink: function(link) {
var boardID, path, postID, threadID, _ref;
+
if (link.hostname === 'boards.4chan.org') {
path = link.pathname.split('/');
boardID = path[1];
@@ -2014,6 +2083,7 @@
},
allQuotelinksLinkingTo: function(post) {
var ID, quote, quotedPost, quotelinks, quoterPost, _i, _j, _k, _len, _len1, _len2, _ref, _ref1, _ref2, _ref3;
+
quotelinks = [];
_ref = g.posts;
for (ID in _ref) {
@@ -2042,12 +2112,14 @@
}
return quotelinks.filter(function(quotelink) {
var boardID, postID, _ref4;
+
_ref4 = Get.postDataFromLink(quotelink), boardID = _ref4.boardID, postID = _ref4.postID;
return boardID === post.board.ID && postID === post.ID;
});
},
postClone: function(boardID, threadID, postID, root, context) {
var post, url;
+
if (post = g.posts["" + boardID + "." + postID]) {
Get.insert(post, root, context);
return;
@@ -2070,6 +2142,7 @@
},
insert: function(post, root, context) {
var clone, nodes;
+
if (!root.parentNode) {
return;
}
@@ -2083,6 +2156,7 @@
},
fetchedPost: function(req, boardID, threadID, postID, root, context) {
var board, post, posts, status, thread, url, _i, _len;
+
if (post = g.posts["" + boardID + "." + postID]) {
Get.insert(post, root, context);
return;
@@ -2136,6 +2210,7 @@
},
archivedPost: function(req, boardID, postID, root, context) {
var board, bq, comment, data, o, post, thread, threadID, _ref;
+
if (post = g.posts["" + boardID + "." + postID]) {
Get.insert(post, root, context);
return;
@@ -2230,8 +2305,10 @@
UI = (function() {
var Menu, dialog, drag, dragend, dragstart, hover, hoverend, hoverstart, touchend, touchmove;
+
dialog = function(id, position, html) {
var child, el, move, _i, _len, _ref;
+
el = $.el('div', {
className: 'dialog',
innerHTML: html,
@@ -2271,6 +2348,7 @@
Menu.prototype.makeMenu = function() {
var menu;
+
menu = $.el('div', {
className: 'dialog',
id: 'menu',
@@ -2285,6 +2363,7 @@
Menu.prototype.toggle = function(e, button, data) {
var previousButton;
+
e.preventDefault();
e.stopPropagation();
if (currentMenu) {
@@ -2302,6 +2381,7 @@
Menu.prototype.open = function(button, data) {
var bLeft, bRect, bTop, bottom, cHeight, cWidth, entry, left, mRect, menu, right, style, top, _i, _len, _ref, _ref1, _ref2;
+
menu = this.makeMenu();
currentMenu = menu;
lastToggledButton = button;
@@ -2340,6 +2420,7 @@
Menu.prototype.insertEntry = function(entry, parent, data) {
var subEntry, submenu, _i, _len, _ref;
+
if (typeof entry.open === 'function') {
if (!entry.open(data)) {
return;
@@ -2373,6 +2454,7 @@
Menu.prototype.findNextEntry = function(entry, direction) {
var entries;
+
entries = __slice.call(entry.parentNode.children);
entries.sort(function(first, second) {
return +(first.style.order || first.style.webkitOrder) - +(second.style.order || second.style.webkitOrder);
@@ -2382,6 +2464,7 @@
Menu.prototype.keybinds = function(e) {
var entry, next, nextPrev, subEntry, submenu;
+
entry = $('.focused', currentMenu);
while (subEntry = $('.focused', entry)) {
entry = subEntry;
@@ -2427,6 +2510,7 @@
Menu.prototype.focus = function(entry) {
var bottom, cHeight, cWidth, eRect, focused, left, right, sRect, style, submenu, top, _i, _len, _ref, _ref1, _ref2;
+
while (focused = $.x('parent::*/child::*[contains(@class,"focused")]', entry)) {
$.rmClass(focused, 'focused');
}
@@ -2454,6 +2538,7 @@
Menu.prototype.addEntry = function(e) {
var entry;
+
entry = e.detail;
if (entry.type !== this.type) {
return;
@@ -2464,6 +2549,7 @@
Menu.prototype.parseEntry = function(entry) {
var el, style, subEntries, subEntry, _i, _len;
+
el = entry.el, subEntries = entry.subEntries;
$.addClass(el, 'entry');
$.on(el, 'focus mouseover', (function(e) {
@@ -2487,6 +2573,7 @@
})();
dragstart = function(e) {
var el, isTouching, o, rect, screenHeight, screenWidth, _ref;
+
if (e.type === 'mousedown' && e.button !== 0) {
return;
}
@@ -2525,6 +2612,7 @@
};
touchmove = function(e) {
var touch, _i, _len, _ref;
+
_ref = e.changedTouches;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
touch = _ref[_i];
@@ -2536,6 +2624,7 @@
};
drag = function(e) {
var bottom, clientX, clientY, left, right, style, top;
+
clientX = e.clientX, clientY = e.clientY;
left = clientX - this.dx;
left = left < 10 ? 0 : this.width - left < 10 ? null : left / this.screenWidth * 100 + '%';
@@ -2551,6 +2640,7 @@
};
touchend = function(e) {
var touch, _i, _len, _ref;
+
_ref = e.changedTouches;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
touch = _ref[_i];
@@ -2572,6 +2662,7 @@
};
hoverstart = function(_arg) {
var asapTest, cb, el, endEvents, latestEvent, o, root;
+
root = _arg.root, el = _arg.el, latestEvent = _arg.latestEvent, endEvents = _arg.endEvents, asapTest = _arg.asapTest, cb = _arg.cb;
o = {
root: root,
@@ -2600,6 +2691,7 @@
};
hover = function(e) {
var clientX, clientY, height, left, right, style, top, _ref;
+
this.latestEvent = e;
height = this.el.offsetHeight;
clientX = e.clientX, clientY = e.clientY;
@@ -2642,6 +2734,7 @@
},
node: function() {
var email, name, tripcode, _ref;
+
if (this.info.capcode || this.isClone) {
return;
}
@@ -2668,6 +2761,7 @@
filters: {},
init: function() {
var boards, err, filter, hl, key, op, regexp, stub, top, _i, _len, _ref, _ref1, _ref2, _ref3, _ref4;
+
if (g.VIEW === 'catalog' || !Conf['Filter']) {
return;
}
@@ -2704,6 +2798,7 @@
op = ((_ref2 = filter.match(/[^t]op:(yes|no|only)/)) != null ? _ref2[1] : void 0) || 'yes';
stub = (function() {
var _ref3;
+
switch ((_ref3 = filter.match(/stub:(yes|no)/)) != null ? _ref3[1] : void 0) {
case 'yes':
return true;
@@ -2734,6 +2829,7 @@
},
createFilter: function(regexp, op, stub, hl, top) {
var settings, test;
+
test = typeof regexp === 'string' ? function(value) {
return regexp === value;
} : function(value) {
@@ -2757,6 +2853,7 @@
},
node: function() {
var filter, firstThread, key, result, thisThread, value, _i, _len, _ref;
+
if (this.isClone) {
return;
}
@@ -2868,6 +2965,7 @@
menu: {
init: function() {
var div, entry, type, _i, _len, _ref;
+
if (g.VIEW === 'catalog' || !Conf['Menu'] || !Conf['Filter']) {
return;
}
@@ -2893,6 +2991,7 @@
},
createSubEntry: function(text, type) {
var el;
+
el = $.el('a', {
href: 'javascript:;',
textContent: text
@@ -2903,6 +3002,7 @@
el: el,
open: function(post) {
var value;
+
value = Filter[type](post);
return value !== false;
}
@@ -2910,6 +3010,7 @@
},
makeFilter: function() {
var re, type, value;
+
type = this.dataset.type;
value = Filter[type](Filter.menu.post);
re = ['uniqueID', 'MD5'].contains(type) ? value : value.replace(/\/|\\|\^|\$|\n|\.|\(|\)|\{|\}|\[|\]|\?|\*|\+|\|/g, function(c) {
@@ -2924,6 +3025,7 @@
re = ['uniqueID', 'MD5'].contains(type) ? "/" + re + "/" : "/^" + re + "$/";
return $.get(type, Conf[type], function(item) {
var save, section, select, ta, tl;
+
save = item[type];
save = save ? "" + save + "\n" + re : re;
$.set(type, save);
@@ -2957,6 +3059,7 @@
},
node: function() {
var data;
+
if (!this.isReply || this.isClone) {
return;
}
@@ -2980,6 +3083,7 @@
menu: {
init: function() {
var apply, div, hideStubLink, makeStub, replies, thisPost;
+
if (g.VIEW === 'catalog' || !Conf['Menu'] || !Conf['Reply Hiding Link']) {
return;
}
@@ -3050,6 +3154,7 @@
order: 20,
open: function(post) {
var data;
+
if (!post.isReply || post.isClone || !post.isHidden) {
return false;
}
@@ -3081,6 +3186,7 @@
order: 15,
open: function(post) {
var data;
+
if (!post.isReply || post.isClone || !post.isHidden) {
return false;
}
@@ -3097,6 +3203,7 @@
},
hide: function() {
var makeStub, parent, post, replies, thisPost;
+
parent = this.parentNode;
thisPost = $('input[name=thisPost]', parent).checked;
replies = $('input[name=replies]', parent).checked;
@@ -3115,6 +3222,7 @@
},
show: function() {
var data, parent, post, replies, thisPost;
+
parent = this.parentNode;
thisPost = $('input[name=thisPost]', parent).checked;
replies = $('input[name=replies]', parent).checked;
@@ -3138,6 +3246,7 @@
},
hideStub: function() {
var post;
+
post = PostHiding.menu.post;
post.nodes.root.hidden = true;
$.event('CloseMenu');
@@ -3145,6 +3254,7 @@
},
makeButton: function(post, type) {
var a;
+
a = $.el('a', {
className: "" + type + "-reply-button",
innerHTML: " " + (type === 'hide' ? '-' : '+') + " ",
@@ -3155,6 +3265,7 @@
},
saveHiddenState: function(post, isHiding, thisPost, makeStub, hideRecursively) {
var data;
+
data = {
boardID: post.board.ID,
threadID: post.thread.ID,
@@ -3173,12 +3284,14 @@
},
toggle: function() {
var post;
+
post = Get.postFromNode(this);
PostHiding[(post.isHidden ? 'show' : 'hide')](post);
return PostHiding.saveHiddenState(post, post.isHidden);
},
hide: function(post, makeStub, hideRecursively) {
var a, button, postInfo, quotelink, _i, _len, _ref;
+
if (makeStub == null) {
makeStub = Conf['Stubs'];
}
@@ -3213,6 +3326,7 @@
},
show: function(post, showRecursively) {
var quotelink, _i, _len, _ref;
+
if (showRecursively == null) {
showRecursively = Conf['Recursive Hiding'];
}
@@ -3248,6 +3362,7 @@
},
node: function() {
var i, obj, quote, recursive, _i, _j, _len, _len1, _ref, _ref1;
+
if (this.isClone) {
return;
}
@@ -3265,6 +3380,7 @@
},
add: function() {
var args, obj, post, recursive, _base, _name;
+
recursive = arguments[0], post = arguments[1], args = 3 <= arguments.length ? __slice.call(arguments, 2) : [];
obj = (_base = Recursive.recursives)[_name = post.fullID] || (_base[_name] = {
recursives: [],
@@ -3275,6 +3391,7 @@
},
rm: function(recursive, post) {
var i, obj, rec, _i, _len, _ref;
+
if (!(obj = Recursive.recursives[post.fullID])) {
return;
}
@@ -3289,6 +3406,7 @@
},
apply: function() {
var ID, args, fullID, post, recursive, _ref;
+
recursive = arguments[0], post = arguments[1], args = 3 <= arguments.length ? __slice.call(arguments, 2) : [];
fullID = post.fullID;
_ref = g.posts;
@@ -3315,6 +3433,7 @@
},
node: function() {
var data;
+
if (data = ThreadHiding.db.get({
boardID: this.board.ID,
threadID: this.ID
@@ -3328,6 +3447,7 @@
},
syncCatalog: function() {
var hiddenThreads, hiddenThreadsOnCatalog, threadID;
+
hiddenThreads = ThreadHiding.db.get({
boardID: g.BOARD.ID,
defaultValue: {}
@@ -3354,6 +3474,7 @@
cleanCatalog: function(hiddenThreadsOnCatalog) {
return $.cache("//api.4chan.org/" + g.BOARD + "/threads.json", function() {
var page, thread, threads, _i, _j, _len, _len1, _ref, _ref1;
+
if (this.status !== 200) {
return;
}
@@ -3379,6 +3500,7 @@
menu: {
init: function() {
var apply, div, hideStubLink, makeStub;
+
if (g.VIEW !== 'index' || !Conf['Menu'] || !Conf['Thread Hiding Link']) {
return;
}
@@ -3400,6 +3522,7 @@
order: 20,
open: function(_arg) {
var isReply, thread;
+
thread = _arg.thread, isReply = _arg.isReply;
if (isReply || thread.isHidden) {
return false;
@@ -3429,6 +3552,7 @@
order: 20,
open: function(_arg) {
var isReply, thread;
+
thread = _arg.thread, isReply = _arg.isReply;
if (isReply || !thread.isHidden) {
return false;
@@ -3448,6 +3572,7 @@
order: 15,
open: function(_arg) {
var isReply, thread;
+
thread = _arg.thread, isReply = _arg.isReply;
if (isReply || !thread.isHidden) {
return false;
@@ -3458,6 +3583,7 @@
},
hide: function() {
var makeStub, thread;
+
makeStub = $('input', this.parentNode).checked;
thread = ThreadHiding.menu.thread;
ThreadHiding.hide(thread, makeStub);
@@ -3466,6 +3592,7 @@
},
show: function() {
var thread;
+
thread = ThreadHiding.menu.thread;
ThreadHiding.show(thread);
ThreadHiding.saveHiddenState(thread);
@@ -3473,6 +3600,7 @@
},
hideStub: function() {
var thread;
+
thread = ThreadHiding.menu.thread;
ThreadHiding.hide(thread, false);
$.event('CloseMenu');
@@ -3480,6 +3608,7 @@
},
makeButton: function(thread, type) {
var a;
+
a = $.el('a', {
className: "" + type + "-thread-button",
innerHTML: " " + (type === 'hide' ? '-' : '+') + " ",
@@ -3491,6 +3620,7 @@
},
saveHiddenState: function(thread, makeStub) {
var hiddenThreadsOnCatalog;
+
hiddenThreadsOnCatalog = JSON.parse(localStorage.getItem("4chan-hide-t-" + g.BOARD)) || {};
if (thread.isHidden) {
ThreadHiding.db.set({
@@ -3523,6 +3653,7 @@
},
hide: function(thread, makeStub) {
var OP, a, button, numReplies, opInfo, span, threadRoot;
+
if (makeStub == null) {
makeStub = Conf['Stubs'];
}
@@ -3546,6 +3677,7 @@
},
show: function(thread) {
var threadRoot;
+
if (thread.stub) {
$.rm(thread.stub);
delete thread.stub;
@@ -3558,6 +3690,7 @@
QuoteBacklink = {
init: function() {
var format;
+
if (g.VIEW === 'catalog' || !Conf['Quote Backlinks']) {
return;
}
@@ -3575,6 +3708,7 @@
},
firstNode: function() {
var a, clone, container, containers, frag, link, post, quote, _i, _j, _k, _len, _len1, _len2, _ref, _ref1;
+
if (this.isClone || !this.quotes.length) {
return;
}
@@ -3612,6 +3746,7 @@
},
secondNode: function() {
var container;
+
if (this.isClone && (this.origin.isReply || Conf['OP Backlinks'])) {
this.nodes.backlinkContainer = $('.container', this.nodes.info);
return;
@@ -3625,6 +3760,7 @@
},
getContainer: function(id) {
var _base;
+
return (_base = this.containers)[id] || (_base[id] = $.el('span', {
className: 'container'
}));
@@ -3647,6 +3783,7 @@
},
node: function() {
var board, boardID, quotelink, quotelinks, quotes, thread, threadID, _i, _len, _ref, _ref1;
+
if (this.isClone && this.thread === this.context.thread) {
return;
}
@@ -3679,6 +3816,7 @@
if (Conf['Quote Hash Navigation']) {
this.node = function() {
var link, _i, _len, _ref;
+
_ref = this.nodes.quotelinks.concat(__slice.call(this.nodes.backlinks));
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
link = _ref[_i];
@@ -3691,6 +3829,7 @@
} else {
this.node = function() {
var link, _i, _len, _ref;
+
_ref = this.nodes.quotelinks.concat(__slice.call(this.nodes.backlinks));
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
link = _ref[_i];
@@ -3717,6 +3856,7 @@
},
toggle: function(e) {
var boardID, context, postID, threadID, _ref;
+
if (e.shiftKey || e.altKey || e.ctrlKey || e.metaKey || e.button !== 0) {
return;
}
@@ -3742,6 +3882,7 @@
},
add: function(quotelink, boardID, threadID, postID, context) {
var inline, isBacklink, post, qroot, root;
+
isBacklink = $.hasClass(quotelink, 'backlink');
inline = $.el('div', {
id: "i" + postID,
@@ -3766,6 +3907,7 @@
},
rm: function(quotelink, boardID, threadID, postID, context) {
var el, inlined, isBacklink, post, qroot, root, _ref;
+
isBacklink = $.hasClass(quotelink, 'backlink');
root = QuoteInline.findRoot(quotelink, isBacklink);
root = $.x("following-sibling::div[@id='i" + postID + "'][1]", root);
@@ -3807,6 +3949,7 @@
},
node: function() {
var boardID, op, postID, quotelink, quotelinks, quotes, _i, _j, _len, _len1, _ref;
+
if (this.isClone && this.thread === this.context.thread) {
return;
}
@@ -3849,6 +3992,7 @@
},
node: function() {
var link, _i, _len, _ref;
+
_ref = this.nodes.quotelinks.concat(__slice.call(this.nodes.backlinks));
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
link = _ref[_i];
@@ -3857,6 +4001,7 @@
},
mouseover: function(e) {
var boardID, clone, origin, post, postID, posts, qp, quote, quoterID, threadID, _i, _j, _len, _len1, _ref, _ref1;
+
if ($.hasClass(this, 'inlined')) {
return;
}
@@ -3900,6 +4045,7 @@
},
mouseout: function() {
var clone, post, root, _i, _len, _ref;
+
if (!(root = this.el.firstElementChild)) {
return;
}
@@ -3929,6 +4075,7 @@
},
node: function() {
var boardID, postID, quotelink, _i, _len, _ref, _ref1, _ref2;
+
if (this.isClone) {
return;
}
@@ -3951,6 +4098,7 @@
QuoteThreading = {
init: function() {
var input;
+
if (!(Conf['Quote Threading'] && g.VIEW === 'thread')) {
return;
}
@@ -3973,6 +4121,7 @@
},
setup: function() {
var ID, post, posts;
+
$.off(d, '4chanXInitFinished', QuoteThreading.setup);
posts = g.posts;
for (ID in posts) {
@@ -3985,6 +4134,7 @@
},
node: function() {
var ID, fullID, keys, len, post, posts, qid, quote, quotes, uniq, _i, _len;
+
if (this.isClone || !QuoteThreading.enabled || this.thread.OP === this) {
return;
}
@@ -4014,6 +4164,7 @@
},
nodeinsert: function() {
var bottom, height, qpost, qroot, threadContainer, top, _ref;
+
qpost = g.posts[this.threaded];
delete this.threaded;
delete this.cb;
@@ -4042,6 +4193,7 @@
},
toggle: function() {
var container, containers, node, post, replies, reply, thread, _i, _j, _k, _len, _len1, _len2, _ref;
+
thread = $('.thread');
replies = $$('.thread > .replyContainer, .threadContainer > .replyContainer', thread);
QuoteThreading.enabled = this.checked;
@@ -4058,6 +4210,7 @@
} else {
replies.sort(function(a, b) {
var aID, bID;
+
aID = Number(a.id.slice(2));
bID = Number(b.id.slice(2));
return aID - bID;
@@ -4078,6 +4231,7 @@
},
kb: function() {
var control;
+
control = $.id('threadingControl');
return control.click();
}
@@ -4104,6 +4258,7 @@
},
node: function() {
var quotelink, _i, _len, _ref;
+
if (this.isClone) {
return;
}
@@ -4126,6 +4281,7 @@
cb: {
seek: function(type) {
var highlight, post, posts, result, str;
+
if (!(Conf['Mark Quotes of You'] && Conf['Quick Reply'])) {
return;
}
@@ -4181,6 +4337,7 @@
},
node: function() {
var deadlink, _i, _len, _ref;
+
_ref = $$('.deadlink', this.nodes.comment);
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
deadlink = _ref[_i];
@@ -4195,6 +4352,7 @@
},
parseDeadlink: function(deadlink) {
var a, boardID, m, post, postID, quote, quoteID, redirect, _ref;
+
if (deadlink.parentNode.className === 'prettyprint') {
Quotify.fixDeadlink(deadlink);
return;
@@ -4273,7 +4431,7 @@
if (g.VIEW === 'catalog' || !Conf['Linkify']) {
return;
}
- this.regString = /(?:(http|https|mailto|git|magnet|ftp|irc):([a-z\d%\/])|www\d{0,3}[.]|[-a-z\d.]+[.](com|net|org|co\.jp|uk|ru|be|tv|xxx|edu|gov|cd|es|de|se|tk|dk|io|fm|fi)|[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}|[-\w\d.@]+@[a-z\d.-]+\.[a-z\d])/i;
+ this.regString = /((https?|mailto|git|magnet|ftp|irc):([a-z\d%\/])|www\d{0,3}[.]|[-a-z\d.]+[.](com|net|org|co\.jp|us|uk|ru|be|tv|xxx|edu|gov|cd|es|de|se|tk|dk|io|fm|fi|mp|ly)|[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}\.[\d]{1,3}|[-\w\d.@]+@[a-z\d.-]+\.[a-z\d])/i;
if (Conf['Comment Expansion']) {
ExpandComment.callbacks.push(this.node);
}
@@ -4287,6 +4445,7 @@
},
node: function() {
var data, el, end, endNode, i, index, items, length, link, links, node, range, result, saved, snapshot, space, test, _i, _len, _ref;
+
if (this.isClone) {
if (Conf['Embedding']) {
i = 0;
@@ -4365,6 +4524,7 @@
},
makeRange: function(startNode, endNode, startOffset, endOffset) {
var range;
+
range = document.createRange();
range.setStart(startNode, startOffset);
range.setEnd(endNode, endOffset);
@@ -4372,6 +4532,7 @@
},
makeLink: function(range) {
var a, char, text, trim;
+
text = range.toString();
trim = function() {
if (!(range.endOffset < 1)) {
@@ -4405,6 +4566,7 @@
},
services: function(link) {
var href, key, match, type, _ref;
+
href = link.href;
_ref = Linkify.types;
for (key in _ref) {
@@ -4417,6 +4579,7 @@
},
embed: function(data) {
var embed, href, key, link, name, options, uid, value, _ref;
+
key = data[0], uid = data[1], options = data[2], link = data[3];
href = link.href;
embed = $.el('a', {
@@ -4445,6 +4608,7 @@
},
title: function(data) {
var embed, err, key, link, options, service, title, titles, uid;
+
key = data[0], uid = data[1], options = data[2], link = data[3], embed = data[4];
if (!(service = Linkify.types[key].title)) {
return;
@@ -4481,18 +4645,21 @@
cb: {
toggle: function() {
var string, _ref;
+
_ref = $.hasClass(this, "embedded") ? ['unembed', '(embed)'] : ['embed', '(unembed)'], string = _ref[0], this.textContent = _ref[1];
$.replace(this.previousElementSibling, Linkify.cb[string](this));
return $.toggleClass(this, 'embedded');
},
embed: function(a) {
var el, style, type;
+
el = (type = Linkify.types[a.dataset.key]).el(a);
el.style.cssText = (style = type.style) ? style : "border: 0; width: 640px; height: 390px";
return el;
},
unembed: function(a) {
var el;
+
el = $.el('a', {
rel: 'nofollow noreferrer',
target: 'blank',
@@ -4505,6 +4672,7 @@
},
title: function(response, data) {
var embed, key, link, options, service, text, uid;
+
key = data[0], uid = data[1], options = data[2], link = data[3], embed = data[4];
service = Linkify.types[key].title;
switch (response.status) {
@@ -4544,6 +4712,7 @@
regExp: /.*(?:gist.github.com.*\/)([^\/][^\/]*)$/,
el: function(a) {
var div;
+
return div = $.el('iframe', {
src: "http://www.purplegene.com/script?url=https://gist.github.com/" + a.dataset.uid + ".js"
});
@@ -4554,6 +4723,7 @@
},
text: function(_arg) {
var file, files;
+
files = _arg.files;
for (file in files) {
if (files.hasOwnProperty(file)) {
@@ -4601,6 +4771,7 @@
regExp: /.*(?:pastebin.com\/(?!u\/))([^#\&\?]*).*/,
el: function(a) {
var div;
+
return div = $.el('iframe', {
src: "http://pastebin.com/embed_iframe.php?i=" + a.dataset.uid
});
@@ -4611,6 +4782,7 @@
style: 'height: auto; width: 500px; display: inline-block;',
el: function(a) {
var div;
+
div = $.el('div', {
className: "soundcloud",
name: "soundcloud"
@@ -4636,6 +4808,7 @@
style: "border: none; width: 640px; height: 360px;",
el: function(a) {
var channel, chapter, result, _;
+
if (result = /(\w+)\/(?:[a-z]\/)?(\d+)/i.exec(a.dataset.uid)) {
_ = result[0], channel = result[1], chapter = result[2];
return $.el('object', {
@@ -4707,6 +4880,7 @@
QR = {
init: function() {
var sc;
+
if (!Conf['Quick Reply']) {
return;
}
@@ -4753,6 +4927,7 @@
},
initReady: function() {
var link;
+
QR.postingIsEnabled = !!$.id('postForm');
if (!QR.postingIsEnabled) {
return;
@@ -4772,11 +4947,13 @@
$.before($.id('postForm'), link);
$.on(d, 'QRGetSelectedPost', function(_arg) {
var cb;
+
cb = _arg.detail;
return cb(QR.selected);
});
$.on(d, 'QRAddPreSubmitHook', function(_arg) {
var cb;
+
cb = _arg.detail;
return QR.preSubmitHooks.push(cb);
});
@@ -4806,6 +4983,7 @@
},
open: function() {
var err;
+
if (QR.nodes) {
QR.nodes.el.hidden = false;
QR.unhide();
@@ -4824,6 +5002,7 @@
},
close: function() {
var post, _i, _len, _ref;
+
if (QR.req) {
QR.abort();
return;
@@ -4871,6 +5050,7 @@
},
error: function(err) {
var el;
+
QR.open();
if (typeof err === 'string') {
el = $.tn(err);
@@ -4898,6 +5078,7 @@
notifications: [],
cleanNotifications: function() {
var notification, _i, _len, _ref;
+
_ref = QR.notifications;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
notification = _ref[_i];
@@ -4907,6 +5088,7 @@
},
status: function() {
var disabled, status, thread, value;
+
if (!QR.nodes) {
return;
}
@@ -4928,6 +5110,7 @@
QR.persona.getPassword();
return $.get('QR.personas', Conf['QR.personas'], function(_arg) {
var arr, item, personas, type, types, _i, _len, _ref;
+
personas = _arg['QR.personas'];
types = {
name: [],
@@ -4947,6 +5130,7 @@
},
parseItem: function(item, types) {
var boards, match, type, val, _ref, _ref1;
+
if (item[0] === '#') {
return;
}
@@ -4975,6 +5159,7 @@
},
loadPersonas: function(type, arr) {
var list, val, _i, _len;
+
list = $("#list-" + type, QR.nodes.el);
for (_i = 0, _len = arr.length; _i < _len; _i++) {
val = arr[_i];
@@ -4987,6 +5172,7 @@
},
getPassword: function() {
var input, m;
+
if (!QR.persona.pwd) {
QR.persona.pwd = (m = d.cookie.match(/4chan_pass=([^;]+)/)) ? decodeURIComponent(m[1]) : (input = $.id('postPassword')) ? input.value : $.id('delPassword').value;
}
@@ -4995,6 +5181,7 @@
get: function(cb) {
return $.get('QR.persona', {}, function(_arg) {
var persona;
+
persona = _arg['QR.persona'];
return cb(persona);
});
@@ -5002,6 +5189,7 @@
set: function(post) {
return $.get('QR.persona', {}, function(_arg) {
var persona;
+
persona = _arg['QR.persona'];
persona = {
name: post.name,
@@ -5015,6 +5203,7 @@
cooldown: {
init: function() {
var board;
+
if (!Conf['Cooldown']) {
return;
}
@@ -5056,6 +5245,7 @@
},
sync: function(cooldowns) {
var id;
+
for (id in cooldowns) {
QR.cooldown.cooldowns[id] = cooldowns[id];
}
@@ -5063,6 +5253,7 @@
},
set: function(data) {
var cooldown, delay, hasFile, isReply, isSage, post, req, start, type, upSpd;
+
if (!Conf['Cooldown']) {
return;
}
@@ -5102,6 +5293,7 @@
},
count: function() {
var cooldown, cooldowns, elapsed, hasFile, isReply, isSage, now, post, seconds, start, type, types, upSpd, upSpdAccuracy, update, _ref;
+
if (!Object.keys(QR.cooldown.cooldowns).length) {
$["delete"]("" + g.BOARD + ".cooldown");
delete QR.cooldown.isCounting;
@@ -5155,6 +5347,7 @@
},
quote: function(e) {
var caretPos, com, index, post, range, s, sel, text, thread, _ref;
+
if (e != null) {
e.preventDefault();
}
@@ -5192,6 +5385,7 @@
},
characterCount: function() {
var count, counter;
+
counter = QR.nodes.charCount;
count = QR.nodes.com.textLength;
counter.textContent = count;
@@ -5200,6 +5394,7 @@
},
drag: function(e) {
var toggle;
+
toggle = e.type === 'dragstart' ? $.off : $.on;
toggle(d, 'dragover', QR.dragOver);
return toggle(d, 'drop', QR.dropFile);
@@ -5219,6 +5414,7 @@
},
paste: function(e) {
var blob, files, item, _i, _len, _ref;
+
files = [];
_ref = e.clipboardData.items;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -5246,6 +5442,7 @@
},
fileInput: function(files) {
var file, length, max, post, _i, _len;
+
if (files instanceof Event) {
files = __slice.call(this.files);
QR.nodes.fileInput.value = null;
@@ -5294,6 +5491,7 @@
function _Class(select) {
var el, event, prev, _i, _len, _ref,
_this = this;
+
el = $.el('a', {
className: 'qr-preview',
draggable: true,
@@ -5347,6 +5545,7 @@
_Class.prototype.rm = function() {
var index;
+
this["delete"]();
index = QR.posts.indexOf(this);
if (QR.posts.length === 1) {
@@ -5366,6 +5565,7 @@
_Class.prototype.lock = function(lock) {
var name, _i, _len, _ref;
+
if (lock == null) {
lock = true;
}
@@ -5390,6 +5590,7 @@
_Class.prototype.select = function() {
var rectEl, rectList;
+
if (QR.selected) {
QR.selected.nodes.el.id = null;
QR.selected.forceSave();
@@ -5406,6 +5607,7 @@
_Class.prototype.load = function() {
var name, _i, _len, _ref;
+
_ref = ['thread', 'name', 'email', 'sub', 'com'];
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
name = _ref[_i];
@@ -5417,6 +5619,7 @@
_Class.prototype.save = function(input) {
var name, _ref;
+
if (input.type === 'checkbox') {
this.spoiler = input.checked;
return;
@@ -5437,6 +5640,7 @@
_Class.prototype.forceSave = function() {
var name, _i, _len, _ref;
+
if (this !== QR.selected) {
return;
}
@@ -5466,9 +5670,11 @@
_Class.prototype.setThumbnail = function() {
var fileURL, img,
_this = this;
+
img = $.el('img');
img.onload = function() {
var cv, height, s, width;
+
s = 90 * 2;
if (_this.file.type === 'image/gif') {
s *= 3;
@@ -5526,9 +5732,11 @@
_Class.prototype.pasteText = function(file) {
var reader,
_this = this;
+
reader = new FileReader();
reader.onload = function(e) {
var text;
+
text = e.target.result;
if (_this.com) {
_this.com += "\n" + text;
@@ -5566,6 +5774,7 @@
_Class.prototype.drop = function() {
var el, index, newIndex, oldIndex, post;
+
$.rmClass(this, 'over');
if (!this.draggable) {
return;
@@ -5600,6 +5809,7 @@
ready: function() {
var imgContainer, input, setLifetime,
_this = this;
+
setLifetime = function(e) {
return _this.lifetime = e.detail;
};
@@ -5636,6 +5846,7 @@
});
$.get('captchas', [], function(_arg) {
var captchas;
+
captchas = _arg.captchas;
return _this.sync(captchas);
});
@@ -5650,6 +5861,7 @@
},
getOne: function() {
var captcha, challenge, response;
+
this.clear();
if (captcha = this.captchas.shift()) {
challenge = captcha.challenge, response = captcha.response;
@@ -5674,6 +5886,7 @@
},
save: function() {
var response;
+
if (!(response = this.nodes.input.value.trim())) {
return;
}
@@ -5688,6 +5901,7 @@
},
clear: function() {
var captcha, i, now, _i, _len, _ref;
+
now = Date.now();
_ref = this.captchas;
for (i = _i = 0, _len = _ref.length; _i < _len; i = ++_i) {
@@ -5705,6 +5919,7 @@
},
load: function() {
var challenge;
+
if (!this.nodes.challenge.firstChild) {
return;
}
@@ -5717,6 +5932,7 @@
},
count: function() {
var count;
+
count = this.captchas.length;
this.nodes.input.placeholder = (function() {
switch (count) {
@@ -5749,6 +5965,7 @@
},
dialog: function() {
var dialog, i, items, mimeTypes, name, nodes, thread;
+
dialog = UI.dialog('qr', 'top:0;right:0;', " ");
QR.nodes = nodes = {
el: dialog,
@@ -5850,6 +6067,7 @@
preSubmitHooks: [],
submit: function(e) {
var challenge, err, extra, filetag, hook, options, post, postData, response, textOnly, thread, threadID, _i, _len, _ref, _ref1;
+
if (e != null) {
e.preventDefault();
}
@@ -5963,6 +6181,7 @@
},
response: function() {
var URL, ban, board, err, h1, isReply, m, post, postID, req, resDoc, threadID, _, _ref, _ref1;
+
req = QR.req;
delete QR.req;
post = QR.posts[0];
@@ -6060,6 +6279,7 @@
FappeTyme = {
init: function() {
var el, input;
+
if (!Conf['Fappe Tyme'] || g.VIEW === 'catalog' || g.BOARD === 'f') {
return;
}
@@ -6111,6 +6331,7 @@
},
node: function() {
var thumb, _ref;
+
if (!((_ref = this.file) != null ? _ref.isImage : void 0)) {
return;
}
@@ -6135,6 +6356,7 @@
},
toggleAll: function() {
var ID, file, func, post, _i, _len, _ref, _ref1;
+
$.event('CloseMenu');
if (ImageExpand.on = $.hasClass(ImageExpand.EAI, 'expand-all-shortcut')) {
ImageExpand.EAI.className = 'contract-all-shortcut';
@@ -6168,6 +6390,7 @@
},
toggle: function(post) {
var headRect, rect, root, thumb, x, y;
+
thumb = post.file.thumb;
if (!(post.file.isExpanded || $.hasClass(thumb, 'expanding'))) {
ImageExpand.expand(post);
@@ -6177,6 +6400,7 @@
root = post.nodes.root;
rect = (Conf['Advance on contract'] ? (function() {
var next;
+
next = root;
while (next = $.x("following::div[contains(@class,'postContainer')][1]", next)) {
if ($('.stub', next) || next.offsetHeight === 0) {
@@ -6207,6 +6431,7 @@
},
expand: function(post, src) {
var img, thumb;
+
thumb = post.file.thumb;
if (post.isHidden || post.file.isExpanded || $.hasClass(thumb, 'expanding')) {
return;
@@ -6234,6 +6459,7 @@
},
completeExpand: function(post) {
var prev, thumb;
+
thumb = post.file.thumb;
if (!$.hasClass(thumb, 'expanding')) {
return;
@@ -6247,6 +6473,7 @@
prev = post.nodes.root.getBoundingClientRect();
return $.queueTask(function() {
var curr;
+
$.addClass(post.nodes.root, 'expanded-image');
$.rmClass(post.file.thumb, 'expanding');
if (!(prev.top + prev.height <= 0)) {
@@ -6258,6 +6485,7 @@
},
error: function() {
var URL, post, src, timeoutID;
+
post = Get.postFromNode(this);
$.rm(this);
delete post.file.fullImage;
@@ -6283,6 +6511,7 @@
return $.ajax("//api.4chan.org/" + post.board + "/res/" + post.thread + ".json", {
onload: function() {
var postObj, _i, _len, _ref;
+
if (this.status !== 200) {
return;
}
@@ -6306,6 +6535,7 @@
menu: {
init: function() {
var conf, createSubEntry, el, name, subEntries, _ref;
+
if (g.VIEW === 'catalog' || !Conf['Image Expansion']) {
return;
}
@@ -6329,6 +6559,7 @@
},
createSubEntry: function(name, desc) {
var input, label;
+
label = $.el('label', {
innerHTML: " " + name,
title: desc
@@ -6362,6 +6593,7 @@
},
node: function() {
var _ref;
+
if (!((_ref = this.file) != null ? _ref.isImage : void 0)) {
return;
}
@@ -6369,6 +6601,7 @@
},
mouseover: function(e) {
var el, post;
+
post = Get.postFromNode(this);
el = $.el('img', {
id: 'ihover',
@@ -6390,6 +6623,7 @@
error: function() {
var URL, post, src, timeoutID,
_this = this;
+
if (!doc.contains(this)) {
return;
}
@@ -6414,6 +6648,7 @@
return $.ajax("//api.4chan.org/" + post.board + "/res/" + post.thread + ".json", {
onload: function() {
var postObj, _i, _len, _ref;
+
if (this.status !== 200) {
return;
}
@@ -6439,6 +6674,7 @@
ImageLoader = {
init: function() {
var prefetch;
+
if (g.VIEW === 'catalog') {
return;
}
@@ -6465,6 +6701,7 @@
},
node: function() {
var URL, img, string, style, thumb, type, _ref, _ref1;
+
if (this.isClone || this.isHidden || this.thread.isHidden || !((_ref = this.file) != null ? _ref.isImage : void 0)) {
return;
}
@@ -6486,6 +6723,7 @@
},
toggle: function() {
var enabled, id, post, _ref;
+
enabled = Conf['prefetch'] = this.checked;
if (enabled) {
_ref = g.threads["" + g.BOARD.ID + "." + g.THREADID].posts;
@@ -6509,6 +6747,7 @@
},
node: function() {
var thumb, _ref;
+
if (this.isClone || !((_ref = this.file) != null ? _ref.isSpoiler : void 0)) {
return;
}
@@ -6521,6 +6760,7 @@
Sauce = {
init: function() {
var err, link, links, _i, _len, _ref;
+
if (g.VIEW === 'catalog' || !Conf['Sauce']) {
return;
}
@@ -6550,6 +6790,7 @@
},
createSauceLink: function(link) {
var m, text;
+
link = link.replace(/%(T?URL|MD5|board)/ig, function(parameter) {
switch (parameter) {
case '%TURL':
@@ -6570,6 +6811,7 @@
},
node: function() {
var link, nodes, _i, _len, _ref;
+
if (this.isClone || !this.file) {
return;
}
@@ -6586,6 +6828,7 @@
ArchiveLink = {
init: function() {
var div, entry, type, _i, _len, _ref;
+
if (g.VIEW === 'catalog' || !Conf['Menu'] || !Conf['Archive Link']) {
return;
}
@@ -6598,6 +6841,7 @@
order: 90,
open: function(_arg) {
var ID, board, thread;
+
ID = _arg.ID, thread = _arg.thread, board = _arg.board;
return !!Redirect.to('thread', {
postID: ID,
@@ -6616,12 +6860,14 @@
},
createSubEntry: function(text, type) {
var el, open;
+
el = $.el('a', {
textContent: text,
target: '_blank'
});
open = type === 'post' ? function(_arg) {
var ID, board, thread;
+
ID = _arg.ID, thread = _arg.thread, board = _arg.board;
el.href = Redirect.to('thread', {
postID: ID,
@@ -6631,6 +6877,7 @@
return true;
} : function(post) {
var value;
+
value = Filter[type](post);
if (!value) {
return false;
@@ -6653,6 +6900,7 @@
DeleteLink = {
init: function() {
var div, fileEl, fileEntry, postEl, postEntry;
+
if (g.VIEW === 'catalog' || !Conf['Menu'] || !Conf['Delete Link']) {
return;
}
@@ -6680,6 +6928,7 @@
el: fileEl,
open: function(_arg) {
var file;
+
file = _arg.file;
if (!file || file.isDead) {
return false;
@@ -6695,6 +6944,7 @@
order: 40,
open: function(post) {
var node;
+
if (post.isDead || post.board.ID === 'q') {
return false;
}
@@ -6709,6 +6959,7 @@
},
"delete": function() {
var fileOnly, form, link, post;
+
post = DeleteLink.post;
if (DeleteLink.cooldown.counting === post) {
return;
@@ -6738,6 +6989,7 @@
},
load: function(link, post, fileOnly, resDoc) {
var msg, s;
+
if (resDoc.title === '4chan - Banned') {
s = 'Banned!';
} else if (msg = resDoc.getElementById('errmsg')) {
@@ -6758,6 +7010,7 @@
cooldown: {
start: function(post, node) {
var length, seconds, _ref;
+
if (!((_ref = QR.db) != null ? _ref.get({
boardID: post.board.ID,
threadID: post.thread.ID,
@@ -6791,6 +7044,7 @@
DownloadLink = {
init: function() {
var a;
+
if (g.VIEW === 'catalog' || !Conf['Menu'] || !Conf['Download Link']) {
return;
}
@@ -6804,6 +7058,7 @@
order: 100,
open: function(_arg) {
var file;
+
file = _arg.file;
if (!file) {
return false;
@@ -6818,6 +7073,7 @@
Menu = (function() {
var a;
+
a = $.el('a', {
className: 'menu-button brackets-wrap',
innerHTML: '',
@@ -6836,6 +7092,7 @@
},
node: function() {
var button;
+
if (this.isClone) {
button = $('.menu-button', this.nodes.info);
} else {
@@ -6846,6 +7103,7 @@
},
makeButton: function() {
var el;
+
el = a.cloneNode(true);
$.on(el, 'click', Menu.toggle);
return el;
@@ -6859,6 +7117,7 @@
ReportLink = {
init: function() {
var a;
+
if (g.VIEW === 'catalog' || !Conf['Menu'] || !Conf['Report Link']) {
return;
}
@@ -6880,6 +7139,7 @@
},
report: function() {
var id, post, set, url;
+
post = ReportLink.post;
url = "//sys.4chan.org/" + post.board + "/imgboard.php?mode=report&no=" + post;
id = Date.now();
@@ -6892,6 +7152,7 @@
init: function() {
return $.ready(function() {
var href;
+
Favicon.el = $('link[rel="shortcut icon"]', d.head);
Favicon.el.type = 'image/x-icon';
href = Favicon.el.href;
@@ -6964,6 +7225,7 @@
init: function() {
var sc,
_this = this;
+
if (g.VIEW !== 'thread' || !Conf['Thread Stats']) {
return;
}
@@ -6992,6 +7254,7 @@
},
node: function() {
var ID, fileCount, post, postCount, _ref;
+
postCount = 0;
fileCount = 0;
_ref = this.posts;
@@ -7009,6 +7272,7 @@
},
onUpdate: function(e) {
var fileCount, postCount, _ref;
+
if (e.detail[404]) {
return;
}
@@ -7017,6 +7281,7 @@
},
update: function(postCount, fileCount) {
var fileCountEl, postCountEl, thread;
+
thread = ThreadStats.thread, postCountEl = ThreadStats.postCountEl, fileCountEl = ThreadStats.fileCountEl;
postCountEl.textContent = postCount;
fileCountEl.textContent = fileCount;
@@ -7041,6 +7306,7 @@
},
onThreadsLoad: function() {
var page, pages, thread, _i, _j, _len, _len1, _ref;
+
if (!(Conf["Page Count in Stats"] && this.status === 200)) {
return;
}
@@ -7064,6 +7330,7 @@
init: function() {
var checked, conf, el, input, name, sc, settings, subEntries, _ref,
_this = this;
+
if (g.VIEW !== 'thread' || !Conf['Thread Updater']) {
return;
}
@@ -7213,6 +7480,7 @@
},
interval: function() {
var val;
+
val = +this.value;
if (val < 1) {
val = 1;
@@ -7222,6 +7490,7 @@
},
load: function() {
var klass, req, text, _ref;
+
req = ThreadUpdater.req;
switch (req.status) {
case 200:
@@ -7254,6 +7523,7 @@
},
getInterval: function() {
var i, j;
+
i = ThreadUpdater.interval;
j = Math.min(ThreadUpdater.outdateCount, 10);
if (!d.hidden) {
@@ -7263,12 +7533,14 @@
},
intervalShortcut: function() {
var settings;
+
Settings.open('Advanced');
settings = $.id('fourchanx-settings');
return $('input[name=Interval]', settings).focus();
},
set: function(name, text, klass) {
var el, node;
+
el = ThreadUpdater[name];
if (node = el.firstChild) {
node.data = text;
@@ -7281,6 +7553,7 @@
},
timeout: function() {
var n;
+
ThreadUpdater.timeoutID = setTimeout(ThreadUpdater.timeout, 1000);
if (!(n = --ThreadUpdater.seconds)) {
return ThreadUpdater.update();
@@ -7293,6 +7566,7 @@
},
update: function() {
var url;
+
if (!ThreadUpdater.online) {
return;
}
@@ -7315,6 +7589,7 @@
},
updateThreadStatus: function(title, OP) {
var icon, message, root, titleLC;
+
titleLC = title.toLowerCase();
if (ThreadUpdater.thread["is" + title] === !!OP[titleLC]) {
return;
@@ -7341,6 +7616,7 @@
},
parse: function(postObjects) {
var ID, OP, count, deletedFiles, deletedPosts, files, index, key, node, num, post, postObject, posts, root, scroll, _i, _len, _ref;
+
OP = postObjects[0];
Build.spoilerRange[ThreadUpdater.thread.board] = OP.custom_spoiler;
ThreadUpdater.updateThreadStatus('Sticky', OP);
@@ -7426,6 +7702,7 @@
}
$.queueTask(function() {
var length, threadID;
+
threadID = ThreadUpdater.thread.ID;
length = $$('.thread > .postContainer', ThreadUpdater.root).length;
return Fourchan.parseThread(threadID, length - count, length);
@@ -7446,6 +7723,7 @@
ThreadWatcher = {
init: function() {
var now, sc;
+
if (!Conf['Thread Watcher']) {
return;
}
@@ -7478,6 +7756,7 @@
}
$.get('WatchedThreads', null, function(_arg) {
var WatchedThreads, boardID, data, threadID, threads, _ref;
+
WatchedThreads = _arg.WatchedThreads;
if (!WatchedThreads) {
return;
@@ -7503,6 +7782,7 @@
},
node: function() {
var toggler;
+
toggler = $.el('img', {
className: 'watcher-toggler'
});
@@ -7524,6 +7804,7 @@
}
return $.get('AutoWatch', 0, function(_arg) {
var AutoWatch, thread;
+
AutoWatch = _arg.AutoWatch;
if (!(thread = g.BOARD.threads[AutoWatch])) {
return;
@@ -7539,6 +7820,7 @@
cb: {
openAll: function() {
var a, _i, _len, _ref;
+
if ($.hasClass(this, 'disabled')) {
return;
}
@@ -7557,6 +7839,7 @@
},
pruneDeads: function() {
var boardID, data, threadID, _i, _len, _ref, _ref1;
+
if ($.hasClass(this, 'disabled')) {
return;
}
@@ -7580,11 +7863,13 @@
},
rm: function() {
var boardID, threadID, _ref;
+
_ref = this.parentNode.dataset.fullID.split('.'), boardID = _ref[0], threadID = _ref[1];
return ThreadWatcher.rm(boardID, +threadID);
},
post: function(e) {
var board, postID, threadID, _ref;
+
_ref = e.detail, board = _ref.board, postID = _ref.postID, threadID = _ref.threadID;
if (postID === threadID) {
if (Conf['Auto Watch']) {
@@ -7596,6 +7881,7 @@
},
threadUpdate: function(e) {
var thread;
+
thread = e.detail.thread;
if (!(e.detail[404] && ThreadWatcher.db.get({
boardID: thread.board.ID,
@@ -7612,6 +7898,7 @@
},
fetchAllStatus: function() {
var thread, _i, _len, _ref;
+
ThreadWatcher.status.textContent = '...';
_ref = ThreadWatcher.getAll();
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -7621,6 +7908,7 @@
},
fetchStatus: function(_arg) {
var boardID, data, fetchCount, threadID;
+
boardID = _arg.boardID, threadID = _arg.threadID, data = _arg.data;
if (data.isDead) {
return;
@@ -7630,6 +7918,7 @@
return $.ajax("//api.4chan.org/" + boardID + "/res/" + threadID + ".json", {
onloadend: function() {
var status;
+
fetchCount.fetched++;
if (fetchCount.fetched === fetchCount.fetching) {
fetchCount.fetched = 0;
@@ -7660,6 +7949,7 @@
},
getAll: function() {
var all, boardID, data, threadID, threads, _ref;
+
all = [];
_ref = ThreadWatcher.db.data.boards;
for (boardID in _ref) {
@@ -7680,6 +7970,7 @@
},
makeLine: function(boardID, threadID, data) {
var div, fullID, href, link, x;
+
x = $.el('a', {
textContent: '×',
href: 'javascript:;'
@@ -7710,6 +8001,7 @@
},
refresh: function() {
var boardID, data, list, nodes, refresher, thread, threadID, toggler, watched, _i, _j, _len, _len1, _ref, _ref1, _ref2, _ref3;
+
nodes = [];
_ref = ThreadWatcher.getAll();
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -7737,6 +8029,7 @@
},
toggle: function(thread) {
var boardID, threadID;
+
boardID = thread.board.ID;
threadID = thread.ID;
if (ThreadWatcher.db.get({
@@ -7750,6 +8043,7 @@
},
add: function(thread) {
var boardID, data, threadID;
+
data = {};
boardID = thread.board.ID;
threadID = thread.ID;
@@ -7780,6 +8074,7 @@
},
convert: function(oldFormat) {
var boardID, data, newFormat, threadID, threads;
+
newFormat = {};
for (boardID in oldFormat) {
threads = oldFormat[boardID];
@@ -7796,6 +8091,7 @@
refreshers: [],
init: function() {
var menu;
+
if (!Conf['Thread Watcher']) {
return;
}
@@ -7808,6 +8104,7 @@
},
addHeaderMenuEntry: function() {
var entryEl;
+
if (g.VIEW !== 'thread') {
return;
}
@@ -7824,6 +8121,7 @@
});
return this.refreshers.push(function() {
var addClass, rmClass, text, _ref;
+
_ref = $('.current', ThreadWatcher.list) ? ['unwatch-thread', 'watch-thread', 'Unwatch thread'] : ['watch-thread', 'unwatch-thread', 'Watch thread'], addClass = _ref[0], rmClass = _ref[1], text = _ref[2];
$.addClass(entryEl, addClass);
$.rmClass(entryEl, rmClass);
@@ -7832,6 +8130,7 @@
},
addMenuEntries: function() {
var cb, conf, entries, entry, name, refresh, subEntries, _i, _len, _ref, _ref1, _results;
+
entries = [];
entries.push({
cb: ThreadWatcher.cb.openAll,
@@ -7902,6 +8201,7 @@
},
createSubEntry: function(name, desc) {
var entry, input;
+
entry = {
type: 'thread watcher',
el: $.el('label', {
@@ -7953,6 +8253,7 @@
},
ready: function() {
var ID, post, posts, _ref;
+
$.off(d, '4chanXInitFinished', Unread.ready);
posts = [];
_ref = Unread.thread.posts;
@@ -7969,6 +8270,7 @@
},
scroll: function() {
var checkPosition, hash, onload, post, posts, root;
+
if ((hash = location.hash.match(/\d+/)) && hash[0] in Unread.thread.posts) {
return;
}
@@ -7998,6 +8300,7 @@
}
checkPosition = function(target) {
var height, top, _ref;
+
_ref = target.getBoundingClientRect(), top = _ref.top, height = _ref.height;
return top + height - doc.clientHeight > 0;
};
@@ -8005,6 +8308,7 @@
},
sync: function() {
var lastReadPost;
+
lastReadPost = Unread.db.get({
boardID: Unread.thread.board.ID,
threadID: Unread.thread.ID,
@@ -8021,6 +8325,7 @@
},
addPosts: function(posts) {
var ID, data, post, _i, _len;
+
for (_i = 0, _len = posts.length; _i < _len; _i++) {
post = posts[_i];
ID = post.ID;
@@ -8048,6 +8353,7 @@
},
addPostQuotingYou: function(post) {
var quotelink, _i, _len, _ref;
+
if (!QR.db) {
return;
}
@@ -8068,6 +8374,7 @@
},
readSinglePost: function(post) {
var i;
+
if ((i = Unread.posts.indexOf(post)) === -1) {
return;
}
@@ -8083,6 +8390,7 @@
},
readArray: function(arr) {
var i, post, _i, _len;
+
for (i = _i = 0, _len = arr.length; _i < _len; i = ++_i) {
post = arr[i];
if (post.ID > Unread.lastReadPost) {
@@ -8093,6 +8401,7 @@
},
read: $.debounce(50, function(e) {
var ID, bottom, height, i, post, posts;
+
if (d.hidden || !Unread.posts.length) {
return;
}
@@ -8148,6 +8457,7 @@
}),
setLine: function(force) {
var post, root;
+
if (!(d.hidden || force === true)) {
return;
}
@@ -8162,6 +8472,7 @@
},
update: function(dontrepeat) {
var count;
+
count = Unread.posts.length;
if (Conf['Unread Count']) {
d.title = "" + (Conf['Quoted Title'] && Unread.postsQuotingYou.length ? '(!) ' : '') + (count || !Conf['Hide Unread Count at (0)'] ? "(" + count + ") " : '') + (g.DEAD ? "/" + g.BOARD + "/ - 404" : "" + Unread.title);
@@ -8187,6 +8498,7 @@
},
init: function() {
var archive, boardID, boards, data, id, name, type, _i, _len, _ref, _ref1, _ref2;
+
_ref = Conf['selectedArchives'];
for (boardID in _ref) {
data = _ref[boardID];
@@ -8318,6 +8630,7 @@
},
to: function(dest, data) {
var archive;
+
archive = (dest === 'search' ? Redirect.data.thread : Redirect.data[dest])[data.boardID];
if (!archive) {
return '';
@@ -8326,6 +8639,7 @@
},
protocol: function(archive) {
var protocol;
+
protocol = location.protocol;
if (!archive[protocol.slice(0, -1)]) {
protocol = protocol === 'https:' ? 'http:' : 'https:';
@@ -8334,6 +8648,7 @@
},
thread: function(archive, _arg) {
var boardID, path, postID, threadID;
+
boardID = _arg.boardID, threadID = _arg.threadID, postID = _arg.postID;
path = threadID ? "" + boardID + "/thread/" + threadID : "" + boardID + "/post/" + postID;
if (archive.software === 'foolfuuka') {
@@ -8346,6 +8661,7 @@
},
post: function(archive, _arg) {
var URL, boardID, postID, protocol;
+
boardID = _arg.boardID, postID = _arg.postID;
protocol = Redirect.protocol(archive);
if (['Foolz', 'NSFW Foolz'].contains(archive.name)) {
@@ -8357,11 +8673,13 @@
},
file: function(archive, _arg) {
var boardID, filename;
+
boardID = _arg.boardID, filename = _arg.filename;
return "" + (Redirect.protocol(archive)) + archive.domain + "/" + boardID + "/full_image/" + filename;
},
search: function(archive, _arg) {
var boardID, path, type, value;
+
boardID = _arg.boardID, type = _arg.type, value = _arg.value;
type = type === 'name' ? 'username' : type === 'MD5' ? 'image' : type;
value = encodeURIComponent(value);
@@ -8380,6 +8698,7 @@
},
setup: function() {
var btn, entry, psa;
+
$.off(d, '4chanXInitFinished', PSAHiding.setup);
if (!(psa = $.id('globalMessage'))) {
$.rmClass(doc, 'hide-announcement');
@@ -8408,6 +8727,7 @@
$.on(btn, 'click', PSAHiding.toggle);
$.get('hiddenPSA', 0, function(_arg) {
var hiddenPSA;
+
hiddenPSA = _arg.hiddenPSA;
PSAHiding.sync(hiddenPSA);
$.before(psa, btn);
@@ -8417,6 +8737,7 @@
},
toggle: function(e) {
var UTC;
+
if ($.hasClass(this, 'hide-announcement')) {
UTC = +$.id('globalMessage').dataset.utc;
$.set('hiddenPSA', UTC);
@@ -8428,6 +8749,7 @@
},
sync: function(UTC) {
var hr, psa;
+
psa = $.id('globalMessage');
psa.hidden = PSAHiding.btn.hidden = UTC && UTC >= +psa.dataset.utc ? true : false;
if ((hr = psa.nextElementSibling) && hr.nodeName === 'HR') {
@@ -8439,6 +8761,7 @@
CatalogLinks = {
init: function() {
var el, input;
+
if (!Conf['Catalog Links']) {
return;
}
@@ -8462,12 +8785,14 @@
},
toggle: function() {
var useCatalog;
+
$.event('CloseMenu');
$.set('Header catalog links', useCatalog = this.checked);
return CatalogLinks.set(useCatalog);
},
set: function(useCatalog) {
var a, board, path, _i, _len, _ref;
+
path = useCatalog ? 'catalog' : '';
_ref = $$("#board-list a[href*=\"boards.4chan.org\"]:not(.catalog),\n#boardNavDesktopFoot a[href*=\"boards.4chan.org\"]");
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -8501,6 +8826,7 @@
},
node: function() {
var str, uid;
+
if (this.isClone || !(str = this.info.uniqueID)) {
return;
}
@@ -8513,6 +8839,7 @@
ids: {},
compute: function(str) {
var hash, rgb;
+
hash = IDColor.hash(str);
rgb = [(hash >> 24) & 0xFF, (hash >> 16) & 0xFF, (hash >> 8) & 0xFF];
rgb[3] = ((rgb[0] * 0.299) + (rgb[1] * 0.587) + (rgb[2] * 0.114)) > 125;
@@ -8524,6 +8851,7 @@
},
hash: function(str) {
var i, j, msg;
+
msg = 0;
i = 0;
j = str.length;
@@ -8571,6 +8899,7 @@
},
node: function() {
var dicestats, roll, _ref;
+
if (this.isClone || !(dicestats = (_ref = this.info.email) != null ? _ref.match(/dice[+\s](\d+)d(\d+)/) : void 0)) {
return;
}
@@ -8582,6 +8911,7 @@
Emoji = {
init: function() {
var css, icon, name, pos, _ref;
+
if (!Conf['Emoji']) {
return;
}
@@ -8651,6 +8981,7 @@
},
node: function() {
var a;
+
if (a = $('.abbr > a:not([onclick])', this.nodes.comment)) {
return $.on(a, 'click', ExpandComment.cb);
}
@@ -8662,6 +8993,7 @@
},
expand: function(post) {
var a;
+
if (post.nodes.longComment && !post.nodes.longComment.parentNode) {
$.replace(post.nodes.shortComment, post.nodes.longComment);
post.nodes.comment = post.nodes.longComment;
@@ -8677,6 +9009,7 @@
},
contract: function(post) {
var a;
+
if (!post.nodes.shortComment) {
return;
}
@@ -8687,6 +9020,7 @@
},
parse: function(req, a, post) {
var callback, clone, comment, href, postObj, posts, quote, spoilerRange, status, _i, _j, _k, _len, _len1, _len2, _ref, _ref1;
+
status = req.status;
if (![200, 304].contains(status)) {
a.textContent = "Error " + req.statusText + " (" + status + ")";
@@ -8749,6 +9083,7 @@
},
node: function() {
var a, files, posts, span, _ref;
+
if (!(span = $.x('following-sibling::span[contains(@class,"summary")][1]', this.OP.nodes.root))) {
return;
}
@@ -8769,6 +9104,7 @@
},
toggle: function(thread) {
var a, files, filesCount, inlined, num, post, posts, postsCount, reply, threadRoot, _i, _j, _k, _len, _len1, _len2, _ref, _ref1, _ref2, _ref3, _ref4;
+
threadRoot = thread.OP.nodes.root.parentNode;
a = $('.summary', threadRoot);
switch (thread.isExpanded) {
@@ -8846,6 +9182,7 @@
},
parse: function(req, thread, a) {
var filesCount, link, post, posts, postsCount, postsObj, postsRoot, reply, root, spoilerRange, _i, _len;
+
if (a.textContent[0] === '+') {
return;
}
@@ -8909,6 +9246,7 @@
},
createFunc: function(format) {
var code;
+
code = format.replace(/%(.)/g, function(s, c) {
if (c in FileInfo.formatters) {
return "' + FileInfo.formatters." + c + ".call(post) + '";
@@ -8920,6 +9258,7 @@
},
convertUnit: function(size, unit) {
var i;
+
if (unit === 'B') {
return "" + (size.toFixed()) + " Bytes";
}
@@ -8950,6 +9289,7 @@
},
n: function() {
var fullname, shortname;
+
fullname = this.file.name;
shortname = Build.shortFilename(this.file.name, this.isReply);
if (fullname === shortname) {
@@ -8993,6 +9333,7 @@
Fourchan = {
init: function() {
var board;
+
if (g.VIEW === 'catalog') {
return;
}
@@ -9014,6 +9355,7 @@
},
code: function() {
var pre, _i, _len, _ref;
+
if (this.isClone) {
return;
}
@@ -9043,11 +9385,13 @@
Keybinds = {
init: function() {
var init;
+
if (g.VIEW === 'catalog' || !Conf['Keybinds']) {
return;
}
init = function() {
var node, _i, _len, _ref;
+
$.off(d, '4chanXInitFinished', init);
$.on(d, 'keydown', Keybinds.keydown);
_ref = $$('[accesskey]');
@@ -9060,6 +9404,7 @@
},
keydown: function(e) {
var form, key, notification, notifications, op, target, thread, threadRoot, _i, _len;
+
if (!(key = Keybinds.keyCode(e))) {
return;
}
@@ -9240,6 +9585,7 @@
},
keyCode: function(e) {
var kc, key;
+
key = (function() {
switch (kc = e.keyCode) {
case 8:
@@ -9295,6 +9641,7 @@
},
tags: function(tag, ta) {
var range, selEnd, selStart, value;
+
value = ta.value;
selStart = ta.selectionStart;
selEnd = ta.selectionEnd;
@@ -9305,11 +9652,13 @@
},
sage: function() {
var isSage;
+
isSage = /sage/i.test(QR.nodes.email.value);
return QR.nodes.email.value = isSage ? "" : "sage";
},
img: function(thread, all) {
var post;
+
if (all) {
return ImageExpand.cb.toggleAll();
} else {
@@ -9319,6 +9668,7 @@
},
open: function(thread, tab) {
var url;
+
if (g.VIEW !== 'index') {
return;
}
@@ -9331,6 +9681,7 @@
},
hl: function(delta, thread) {
var axe, headRect, next, postEl, rect, replies, reply, root, topMargin, _i, _len;
+
if (!delta) {
if (postEl = $('.reply.highlight', thread)) {
$.rmClass(postEl, 'highlight');
@@ -9390,6 +9741,7 @@
Nav = {
init: function() {
var append, next, prev, span;
+
switch (g.VIEW) {
case 'index':
if (!Conf['Index Navigation']) {
@@ -9440,6 +9792,7 @@
},
getThread: function(full) {
var headRect, i, rect, thread, threads, topMargin, _i, _len;
+
if (Conf['Bottom header'] || !Conf['Fixed Header']) {
topMargin = 0;
} else {
@@ -9465,6 +9818,7 @@
},
scroll: function(delta) {
var i, rect, thread, threads, top, topMargin, _ref, _ref1;
+
_ref = Nav.getThread(true), threads = _ref[0], thread = _ref[1], i = _ref[2], rect = _ref[3], topMargin = _ref[4];
top = rect.top - topMargin;
if ((delta === -1 && top > -5) || (delta === +1 && top < 5)) {
@@ -9489,6 +9843,7 @@
},
node: function() {
var dateEl;
+
if (this.isClone) {
return;
}
@@ -9498,6 +9853,7 @@
},
relative: function(diff, now, date) {
var days, months, number, rounded, unit, years;
+
unit = (number = diff / $.DAY) >= 1 ? (years = now.getYear() - date.getYear(), months = now.getMonth() - date.getMonth(), days = now.getDate() - date.getDate(), years > 1 ? (number = years - (months < 0 || months === 0 && days < 0), 'year') : years === 1 && (months > 0 || months === 0 && days >= 0) ? (number = years, 'year') : (months = (months + 12) % 12) > 1 ? (number = months - (days < 0), 'month') : months === 1 && days >= 0 ? (number = months, 'month') : 'day') : (number = diff / $.HOUR) >= 1 ? 'hour' : (number = diff / $.MINUTE) >= 1 ? 'minute' : (number = Math.max(0, diff) / $.SECOND, 'second');
rounded = Math.round(number);
if (rounded !== 1) {
@@ -9508,6 +9864,7 @@
stale: [],
flush: function() {
var now, update, _i, _len, _ref;
+
if (d.hidden) {
return;
}
@@ -9523,13 +9880,16 @@
},
setUpdate: function(post) {
var markStale, setOwnTimeout, update;
+
setOwnTimeout = function(diff) {
var delay;
+
delay = diff < $.MINUTE ? $.SECOND - (diff + $.SECOND / 2) % $.SECOND : diff < $.HOUR ? $.MINUTE - (diff + $.MINUTE / 2) % $.MINUTE : diff < $.DAY ? $.HOUR - (diff + $.HOUR / 2) % $.HOUR : $.DAY - (diff + $.DAY / 2) % $.DAY;
return setTimeout(markStale, delay);
};
update = function(now) {
var date, diff, relative, singlePost, _i, _len, _ref;
+
date = post.info.date;
diff = now - date;
relative = RelativeDates.relative(diff, now, date);
@@ -9570,6 +9930,7 @@
},
node: function(post) {
var spoiler, spoilers, _i, _len;
+
spoilers = $$('s', this.nodes.comment);
for (_i = 0, _len = spoilers.length; _i < _len; _i++) {
spoiler = spoilers[_i];
@@ -9589,6 +9950,7 @@
},
ready: function() {
var field;
+
field = $.id('recaptcha_response_field');
$.on(field, 'keydown', function(e) {
if (e.keyCode === 8 && !field.value) {
@@ -9597,6 +9959,7 @@
});
return $.on($('form'), 'submit', function(e) {
var response;
+
e.preventDefault();
response = field.value.trim();
if (!/\s/.test(response)) {
@@ -9626,6 +9989,7 @@
},
createFunc: function(format) {
var code;
+
code = format.replace(/%([A-Za-z])/g, function(s, c) {
if (c in Time.formatters) {
return "' + Time.formatters." + c + ".call(date) + '";
@@ -9710,6 +10074,7 @@
Settings = {
init: function() {
var link, settings;
+
link = $.el('a', {
className: 'settings-link',
textContent: 'Settings',
@@ -9719,6 +10084,7 @@
Header.addShortcut(link);
$.get('previousversion', null, function(item) {
var changelog, el, previous;
+
if (previous = item['previousversion']) {
if (previous === g.VERSION) {
return;
@@ -9757,6 +10123,7 @@
},
open: function(openSection) {
var dialog, html, link, links, overlay, section, sectionToOpen, _i, _len, _ref;
+
$.off(d, '4chanXInitFinished', Settings.open);
if (Settings.dialog) {
return;
@@ -9809,6 +10176,7 @@
sections: [],
addSection: function(title, open) {
var hyphenatedTitle, _ref;
+
if (typeof title !== 'string') {
_ref = title.detail, title = _ref.title, open = _ref.open;
}
@@ -9821,6 +10189,7 @@
},
openSection: function() {
var section, selected;
+
if (selected = $('.tab-selected', Settings.dialog)) {
$.rmClass(selected, 'tab-selected');
}
@@ -9834,6 +10203,7 @@
},
main: function(section) {
var arr, button, description, div, fs, hiddenNum, input, inputs, items, key, obj, _ref;
+
items = {};
inputs = {};
_ref = Config.main;
@@ -9858,6 +10228,7 @@
}
$.get(items, function(items) {
var val;
+
for (key in items) {
val = items[key];
inputs[key].checked = val;
@@ -9872,6 +10243,7 @@
boards: {}
}, function(item) {
var ID, board, thread, _ref1;
+
_ref1 = item.hiddenThreads.boards;
for (ID in _ref1) {
board = _ref1[ID];
@@ -9886,6 +10258,7 @@
boards: {}
}, function(item) {
var ID, board, post, thread, _ref1;
+
_ref1 = item.hiddenPosts.boards;
for (ID in _ref1) {
board = _ref1[ID];
@@ -9905,6 +10278,7 @@
boards: {}
}, function(item) {
var boardID;
+
for (boardID in item.hiddenThreads.boards) {
localStorage.removeItem("4chan-hide-t-" + boardID);
}
@@ -9915,6 +10289,7 @@
},
"export": function(now, data) {
var a, db, _i, _len;
+
if (typeof now !== 'number') {
now = Date.now();
data = {
@@ -9948,6 +10323,7 @@
},
onImport: function() {
var file, output, reader;
+
if (!(file = this.files[0])) {
return;
}
@@ -9959,6 +10335,7 @@
reader = new FileReader();
reader.onload = function(e) {
var data, err;
+
try {
data = JSON.parse(e.target.result);
Settings.loadSettings(data);
@@ -9975,6 +10352,7 @@
},
loadSettings: function(data) {
var key, val, version, _ref;
+
version = data.version.split('.');
if (version[0] === '2') {
data = Settings.convertSettings(data, {
@@ -10062,6 +10440,7 @@
},
convertSettings: function(data, map) {
var newKey, prevKey;
+
for (prevKey in map) {
newKey = map[prevKey];
if (newKey) {
@@ -10073,6 +10452,7 @@
},
filter: function(section) {
var select;
+
section.innerHTML = "";
select = $('select', section);
$.on(select, 'change', Settings.selectFilter);
@@ -10080,6 +10460,7 @@
},
selectFilter: function() {
var div, name, ta;
+
div = this.nextElementSibling;
if ((name = this.value) !== 'guide') {
$.rmAll(div);
@@ -10099,6 +10480,7 @@
},
sauce: function(section) {
var ta;
+
section.innerHTML = " Sauce is disabled.
Lines starting with a # will be ignored.
You can specify a display text by appending ;text:[text] to the URL.
These parameters will be replaced by their corresponding values:\n%TURL: Thumbnail URL.%URL: Full image URL.%MD5: MD5 hash.%board: Current board.
";
ta = $('textarea', section);
$.get('sauces', Conf['sauces'], function(item) {
@@ -10108,6 +10490,7 @@
},
advanced: function(section) {
var archive, boardID, boardOptions, boardSelect, boards, data, event, input, inputs, item, items, name, row, rows, ta, table, _i, _j, _k, _l, _len, _len1, _len2, _len3, _ref, _ref1, _ref2, _ref3, _ref4;
+
section.innerHTML = " ";
items = {};
inputs = {};
@@ -10127,6 +10510,7 @@
$.on(ta, 'change', $.cb.value);
$.get(items, function(items) {
var key, val;
+
for (key in items) {
val = items[key];
if (['emojiPos'].contains(key)) {
@@ -10197,6 +10581,7 @@
});
$.get('selectedArchives', Conf['selectedArchives'], function(_arg) {
var option, selectedArchives, type;
+
selectedArchives = _arg.selectedArchives;
for (boardID in selectedArchives) {
data = selectedArchives[boardID];
@@ -10211,6 +10596,7 @@
},
addArchiveCell: function(boardID, data, type) {
var archive, i, length, options, select, td;
+
length = data[type].length;
td = $.el('td', {
className: 'archive-cell'
@@ -10240,8 +10626,10 @@
},
saveSelectedArchive: function() {
var _this = this;
+
return $.get('selectedArchives', Conf['selectedArchives'], function(_arg) {
var selectedArchives, _name;
+
selectedArchives = _arg.selectedArchives;
(selectedArchives[_name = _this.dataset.boardid] || (selectedArchives[_name] = {}))[_this.dataset.type] = _this.value;
return $.set('selectedArchives', selectedArchives);
@@ -10252,6 +10640,7 @@
},
time: function() {
var funk;
+
funk = Time.createFunc(this.value);
return this.nextElementSibling.textContent = funk(Time, new Date());
},
@@ -10260,6 +10649,7 @@
},
fileInfo: function() {
var data, funk;
+
data = {
isReply: true,
file: {
@@ -10298,6 +10688,7 @@
},
keybinds: function(section) {
var arr, input, inputs, items, key, tbody, tr, _ref;
+
section.innerHTML = "Keybinds are disabled.
Allowed keys: a-z, 0-9, Ctrl, Shift, Alt, Meta, Enter, Esc, Up, Down, Right, Left.
Press Backspace to disable a keybind.
";
tbody = $('tbody', section);
items = {};
@@ -10318,6 +10709,7 @@
}
return $.get(items, function(items) {
var val;
+
for (key in items) {
val = items[key];
inputs[key].value = val;
@@ -10326,6 +10718,7 @@
},
keybind: function(e) {
var key;
+
if (e.keyCode === 9) {
return;
}
@@ -10342,8 +10735,10 @@
Main = {
init: function(items) {
var db, flatten, _i, _len;
+
flatten = function(parent, obj) {
var key, val;
+
if (obj instanceof Array) {
Conf[parent] = obj[0];
} else if (typeof obj === 'object') {
@@ -10372,6 +10767,7 @@
},
initFeatures: function(items) {
var init, pathname, _ref;
+
Conf = items;
pathname = location.pathname.split('/');
g.BOARD = new Board(pathname[1]);
@@ -10400,6 +10796,7 @@
case 'images.4chan.org':
$.ready(function() {
var URL;
+
if (Conf['404 Redirect'] && ['4chan - Temporarily Offline', '4chan - 404 Not Found'].contains(d.title)) {
Redirect.init();
pathname = location.pathname.split('/');
@@ -10416,6 +10813,7 @@
}
init = function(features) {
var err, module, name;
+
for (name in features) {
module = features[name];
try {
@@ -10493,6 +10891,7 @@
},
initStyle: function() {
var mainStyleSheet, setStyle, style, styleSheets, _ref;
+
$.off(d, '4chanMainInit', Main.initStyle);
if (!Main.isThisPageLegit() || $.hasClass(doc, 'fourchan-x')) {
return;
@@ -10513,6 +10912,7 @@
styleSheets = $$('link[rel="alternate stylesheet"]', d.head);
setStyle = function() {
var styleSheet, _i, _len;
+
$.rmClass(doc, style);
for (_i = 0, _len = styleSheets.length; _i < _len; _i++) {
styleSheet = styleSheets[_i];
@@ -10534,6 +10934,7 @@
},
initReady: function() {
var board, err, errors, href, passLink, postRoot, posts, styleSelector, thread, threadRoot, threads, _i, _j, _len, _len1, _ref, _ref1;
+
if (d.title === '4chan - 404 Not Found') {
if (Conf['404 Redirect'] && g.VIEW === 'thread') {
href = Redirect.to('thread', {
@@ -10602,6 +11003,7 @@
},
callbackNodes: function(klass, nodes) {
var callback, err, errors, i, len, node, _i, _len, _ref;
+
len = nodes.length;
_ref = klass.prototype.callbacks;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
@@ -10629,9 +11031,11 @@
},
callbackNodesDB: function(klass, nodes, cb) {
var errors, func, i, len, node, queue, softTask;
+
queue = [];
softTask = function() {
var args, func, task;
+
task = queue.shift();
func = task[0];
args = Array.prototype.slice.call(task, 1);
@@ -10650,6 +11054,7 @@
errors = null;
func = function(node, i) {
var callback, err, _i, _len, _ref;
+
_ref = klass.prototype.callbacks;
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
callback = _ref[_i];
@@ -10683,6 +11088,7 @@
},
addCallback: function(e) {
var Klass, obj;
+
obj = e.detail;
if (typeof obj.callback.name !== 'string') {
throw new Error("Invalid callback name: " + obj.callback.name);
@@ -10702,6 +11108,7 @@
},
handleErrors: function(errors) {
var div, error, logs, _i, _len;
+
if (!(errors instanceof Array)) {
error = errors;
} else if (errors.length === 1) {
@@ -10716,6 +11123,7 @@
});
$.on(div.lastElementChild, 'click', function() {
var _ref;
+
return _ref = this.textContent === 'show' ? ['hide', false] : ['show', true], this.textContent = _ref[0], logs.hidden = _ref[1], _ref;
});
logs = $.el('div', {
@@ -10729,6 +11137,7 @@
},
parseError: function(data) {
var error, message;
+
Main.logError(data);
message = $.el('div', {
textContent: data.message
@@ -10745,6 +11154,7 @@
},
isThisPageLegit: function() {
var _ref;
+
if (!('thisPageIsLegit' in Main)) {
Main.thisPageIsLegit = location.hostname === 'boards.4chan.org' && !$('link[href*="favicon-status.ico"]', d.head) && ((_ref = d.title) !== '4chan - Temporarily Offline' && _ref !== '4chan - Error' && _ref !== '504 Gateway Time-out');
}
diff --git a/src/Linkification/Linkify.coffee b/src/Linkification/Linkify.coffee
index 093f269b8..95abcd949 100644
--- a/src/Linkification/Linkify.coffee
+++ b/src/Linkification/Linkify.coffee
@@ -5,7 +5,7 @@ Linkify =
@regString =
///(
# http, magnet, ftp, etc
- ?:(http|https|mailto|git|magnet|ftp|irc):(
+ (https?|mailto|git|magnet|ftp|irc):(
[a-z\d%/]
)
|
@@ -14,7 +14,7 @@ Linkify =
# This should account for virtually all links posted without www or http:
# If it misses any, screw it. No, I will not add canv.as
[-a-z\d.]+[.](
- com|net|org|co\.jp|uk|ru|be|tv|xxx|edu|gov|cd|es|de|se|tk|dk|io|fm|fi
+ com|net|org|co\.jp|us|uk|ru|be|tv|xxx|edu|gov|cd|es|de|se|tk|dk|io|fm|fi|mp|ly
)
|
# IPv4 Addresses