Merge branch 'master' into qr
Conflicts: 4chan_x.user.js script.coffee
This commit is contained in:
commit
9fb173b4e9
143
4chan_x.user.js
143
4chan_x.user.js
@ -6,6 +6,7 @@
|
|||||||
// @copyright 2009-2011 James Campos <james.r.campos@gmail.com>
|
// @copyright 2009-2011 James Campos <james.r.campos@gmail.com>
|
||||||
// @license MIT; http://en.wikipedia.org/wiki/Mit_license
|
// @license MIT; http://en.wikipedia.org/wiki/Mit_license
|
||||||
// @include http://boards.4chan.org/*
|
// @include http://boards.4chan.org/*
|
||||||
|
// @include http://images.4chan.org/*
|
||||||
// @include http://sys.4chan.org/*
|
// @include http://sys.4chan.org/*
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @updateURL https://raw.github.com/MayhemYDG/4chan-x/stable/4chan_x.user.js
|
// @updateURL https://raw.github.com/MayhemYDG/4chan-x/stable/4chan_x.user.js
|
||||||
@ -70,7 +71,7 @@
|
|||||||
config = {
|
config = {
|
||||||
main: {
|
main: {
|
||||||
Enhancing: {
|
Enhancing: {
|
||||||
'404 Redirect': [true, 'Redirect dead threads'],
|
'404 Redirect': [true, 'Redirect dead threads and images'],
|
||||||
'Keybinds': [true, 'Binds actions to keys'],
|
'Keybinds': [true, 'Binds actions to keys'],
|
||||||
'Time Formatting': [true, 'Arbitrarily formatted timestamps, using your local time'],
|
'Time Formatting': [true, 'Arbitrarily formatted timestamps, using your local time'],
|
||||||
'Report Button': [true, 'Add report buttons'],
|
'Report Button': [true, 'Add report buttons'],
|
||||||
@ -962,7 +963,7 @@
|
|||||||
case conf.submit:
|
case conf.submit:
|
||||||
break;
|
break;
|
||||||
case conf.unreadCountTo0:
|
case conf.unreadCountTo0:
|
||||||
unread.replies.length = 0;
|
unread.replies = [];
|
||||||
unread.updateTitle();
|
unread.updateTitle();
|
||||||
Favicon.update();
|
Favicon.update();
|
||||||
break;
|
break;
|
||||||
@ -2180,10 +2181,15 @@
|
|||||||
return this.classList.toggle('inlined');
|
return this.classList.toggle('inlined');
|
||||||
},
|
},
|
||||||
add: function(q, id) {
|
add: function(q, id) {
|
||||||
var el, inline, pathname, root, threadID;
|
var el, i, inline, pathname, root, threadID;
|
||||||
root = q.parentNode.nodeName === 'FONT' ? q.parentNode : q.nextSibling ? q.nextSibling : q;
|
root = q.parentNode.nodeName === 'FONT' ? q.parentNode : q.nextSibling ? q.nextSibling : q;
|
||||||
if (el = $.id(id)) {
|
if (el = $.id(id)) {
|
||||||
inline = quoteInline.table(id, el.innerHTML);
|
inline = quoteInline.table(id, el.innerHTML);
|
||||||
|
if (g.REPLY && conf['Unread Count'] && (i = unread.replies.indexOf(el.parentNode.parentNode.parentNode)) !== -1) {
|
||||||
|
unread.replies.splice(i, 1);
|
||||||
|
unread.updateTitle();
|
||||||
|
Favicon.update();
|
||||||
|
}
|
||||||
if (/\bbacklink\b/.test(q.className)) {
|
if (/\bbacklink\b/.test(q.className)) {
|
||||||
$.after(q.parentNode, inline);
|
$.after(q.parentNode, inline);
|
||||||
if (conf['Forward Hiding']) {
|
if (conf['Forward Hiding']) {
|
||||||
@ -2413,7 +2419,7 @@
|
|||||||
report: function() {
|
report: function() {
|
||||||
var id, set, url;
|
var id, set, url;
|
||||||
url = "http://sys.4chan.org/" + g.BOARD + "/imgboard.php?mode=report&no=" + ($.x('preceding-sibling::input', this).name);
|
url = "http://sys.4chan.org/" + g.BOARD + "/imgboard.php?mode=report&no=" + ($.x('preceding-sibling::input', this).name);
|
||||||
id = "" + NAMESPACE + "popup";
|
id = Date.now();
|
||||||
set = "toolbar=0,scrollbars=0,location=0,status=1,menubar=0,resizable=1,width=685,height=200";
|
set = "toolbar=0,scrollbars=0,location=0,status=1,menubar=0,resizable=1,width=685,height=200";
|
||||||
return window.open(url, id, set);
|
return window.open(url, id, set);
|
||||||
}
|
}
|
||||||
@ -2531,49 +2537,66 @@
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
redirect = function() {
|
redirect = {
|
||||||
var url;
|
init: function() {
|
||||||
switch (g.BOARD) {
|
var url;
|
||||||
case 'a':
|
url = location.hostname === 'images.4chan.org' ? redirect.image(g.BOARD, location.pathname.split('/')[3]) : /^\d+$/.test(g.THREAD_ID) ? redirect.thread() : void 0;
|
||||||
case 'jp':
|
if (url) return location.href = url;
|
||||||
case 'm':
|
},
|
||||||
case 'tg':
|
image: function(board, filename) {
|
||||||
case 'tv':
|
switch (board) {
|
||||||
url = "http://oldarchive.foolz.us/" + g.BOARD + "/thread/" + g.THREAD_ID;
|
case 'a':
|
||||||
break;
|
case 'jp':
|
||||||
case 'diy':
|
case 'm':
|
||||||
case 'g':
|
case 'tg':
|
||||||
case 'sci':
|
case 'tv':
|
||||||
url = "http://archive.installgentoo.net/" + g.BOARD + "/thread/" + g.THREAD_ID;
|
case 'u':
|
||||||
break;
|
return "http://archivethumb.foolz.us/board/" + board + "/img/" + filename;
|
||||||
case '3':
|
}
|
||||||
case 'adv':
|
},
|
||||||
case 'an':
|
thread: function() {
|
||||||
case 'ck':
|
switch (g.BOARD) {
|
||||||
case 'co':
|
case 'a':
|
||||||
case 'fa':
|
case 'jp':
|
||||||
case 'fit':
|
case 'm':
|
||||||
case 'int':
|
case 'tg':
|
||||||
case 'k':
|
case 'tv':
|
||||||
case 'mu':
|
case 'u':
|
||||||
case 'n':
|
return "http://archive.foolz.us/" + g.BOARD + "/thread/" + g.THREAD_ID + "/";
|
||||||
case 'o':
|
case 'lit':
|
||||||
case 'p':
|
return "http://fuuka.warosu.org/" + g.BOARD + "/thread/" + g.THREAD_ID;
|
||||||
case 'po':
|
case 'diy':
|
||||||
case 'pol':
|
case 'g':
|
||||||
case 'soc':
|
case 'sci':
|
||||||
case 'sp':
|
return "http://archive.installgentoo.net/" + g.BOARD + "/thread/" + g.THREAD_ID;
|
||||||
case 'toy':
|
case '3':
|
||||||
case 'trv':
|
case 'adv':
|
||||||
case 'v':
|
case 'an':
|
||||||
case 'vp':
|
case 'ck':
|
||||||
case 'x':
|
case 'co':
|
||||||
url = "http://archive.no-ip.org/" + g.BOARD + "/thread/" + g.THREAD_ID;
|
case 'fa':
|
||||||
break;
|
case 'fit':
|
||||||
default:
|
case 'int':
|
||||||
url = "http://boards.4chan.org/" + g.BOARD;
|
case 'k':
|
||||||
|
case 'mu':
|
||||||
|
case 'n':
|
||||||
|
case 'o':
|
||||||
|
case 'p':
|
||||||
|
case 'po':
|
||||||
|
case 'pol':
|
||||||
|
case 'r9k':
|
||||||
|
case 'soc':
|
||||||
|
case 'sp':
|
||||||
|
case 'toy':
|
||||||
|
case 'trv':
|
||||||
|
case 'v':
|
||||||
|
case 'vp':
|
||||||
|
case 'x':
|
||||||
|
return "http://archive.no-ip.org/" + g.BOARD + "/thread/" + g.THREAD_ID;
|
||||||
|
default:
|
||||||
|
return "http://boards.4chan.org/" + g.BOARD;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return location.href = url;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
imgHover = {
|
imgHover = {
|
||||||
@ -2588,7 +2611,7 @@
|
|||||||
},
|
},
|
||||||
mouseover: function() {
|
mouseover: function() {
|
||||||
ui.el = $.el('img', {
|
ui.el = $.el('img', {
|
||||||
id: 'iHover',
|
id: 'ihover',
|
||||||
src: this.parentNode.href
|
src: this.parentNode.href
|
||||||
});
|
});
|
||||||
return $.add(d.body, ui.el);
|
return $.add(d.body, ui.el);
|
||||||
@ -2685,26 +2708,29 @@
|
|||||||
thumb.hidden = false;
|
thumb.hidden = false;
|
||||||
return $.rm(thumb.nextSibling);
|
return $.rm(thumb.nextSibling);
|
||||||
},
|
},
|
||||||
expand: function(thumb) {
|
expand: function(thumb, url) {
|
||||||
var a, filesize, img, max;
|
var a, filesize, img, max;
|
||||||
a = thumb.parentNode;
|
a = thumb.parentNode;
|
||||||
img = $.el('img', {
|
img = $.el('img', {
|
||||||
src: a.href
|
src: url ? url : a.href
|
||||||
});
|
});
|
||||||
if (engine === 'gecko' && a.parentNode.className !== 'op') {
|
if (engine === 'gecko' && a.parentNode.className !== 'op') {
|
||||||
filesize = $.x('preceding-sibling::span[@class="filesize"]', a).textContent;
|
filesize = $.x('preceding-sibling::span[@class="filesize"]', a).textContent;
|
||||||
max = filesize.match(/(\d+)x/);
|
max = filesize.match(/(\d+)x/);
|
||||||
img.style.maxWidth = "" + max[1] + "px";
|
img.style.maxWidth = "" + max[1] + "px";
|
||||||
}
|
}
|
||||||
$.on(img, 'error', imgExpand.error);
|
if (conf['404 Redirect']) $.on(img, 'error', imgExpand.error);
|
||||||
thumb.hidden = true;
|
thumb.hidden = true;
|
||||||
return $.add(a, img);
|
return $.add(a, img);
|
||||||
},
|
},
|
||||||
error: function() {
|
error: function() {
|
||||||
var req, thumb;
|
var req, src, thumb, url;
|
||||||
thumb = this.previousSibling;
|
thumb = this.previousSibling;
|
||||||
imgExpand.contract(thumb);
|
imgExpand.contract(thumb);
|
||||||
if (engine === 'webkit') {
|
src = this.src.split('/');
|
||||||
|
if (url = redirect.image(src[3], src[5])) {
|
||||||
|
return imgExpand.expand(thumb, url);
|
||||||
|
} else if (engine === 'webkit') {
|
||||||
return req = $.ajax(this.src, (function() {
|
return req = $.ajax(this.src, (function() {
|
||||||
if (this.status !== 404) {
|
if (this.status !== 404) {
|
||||||
return setTimeout(imgExpand.retry, 10000, thumb);
|
return setTimeout(imgExpand.retry, 10000, thumb);
|
||||||
@ -2754,7 +2780,7 @@
|
|||||||
pathname = location.pathname.slice(1).split('/');
|
pathname = location.pathname.slice(1).split('/');
|
||||||
g.BOARD = pathname[0], temp = pathname[1];
|
g.BOARD = pathname[0], temp = pathname[1];
|
||||||
if (temp === 'res') {
|
if (temp === 'res') {
|
||||||
g.REPLY = temp;
|
g.REPLY = true;
|
||||||
g.THREAD_ID = pathname[2];
|
g.THREAD_ID = pathname[2];
|
||||||
} else {
|
} else {
|
||||||
g.PAGENUM = parseInt(temp) || 0;
|
g.PAGENUM = parseInt(temp) || 0;
|
||||||
@ -2815,11 +2841,11 @@
|
|||||||
onLoad: function() {
|
onLoad: function() {
|
||||||
var callback, node, nodes, _i, _j, _len, _len2, _ref;
|
var callback, node, nodes, _i, _j, _len, _len2, _ref;
|
||||||
$.off(d, 'DOMContentLoaded', Main.onLoad);
|
$.off(d, 'DOMContentLoaded', Main.onLoad);
|
||||||
if (conf['404 Redirect'] && d.title === '4chan - 404' && /^\d+$/.test(g.THREAD_ID)) {
|
if (conf['404 Redirect'] && d.title === '4chan - 404') {
|
||||||
redirect();
|
redirect.init();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!$('#navtopr')) return;
|
if (!$('#navtopr') || location.hostname === 'images.4chan.org') return;
|
||||||
$.addClass(d.body, engine);
|
$.addClass(d.body, engine);
|
||||||
$.addStyle(Main.css);
|
$.addStyle(Main.css);
|
||||||
threading.init();
|
threading.init();
|
||||||
@ -2932,12 +2958,13 @@
|
|||||||
width: 100%;\
|
width: 100%;\
|
||||||
}\
|
}\
|
||||||
\
|
\
|
||||||
#qr, #qp, #updater, #stats, #iHover, #overlay, #navlinks {\
|
#qr, #qp, #updater, #stats, #ihover, #overlay, #navlinks {\
|
||||||
position: fixed;\
|
position: fixed;\
|
||||||
}\
|
}\
|
||||||
\
|
\
|
||||||
#iHover {\
|
#ihover {\
|
||||||
max-height: 100%;\
|
max-height: 100%;\
|
||||||
|
max-width: 75%;\
|
||||||
}\
|
}\
|
||||||
\
|
\
|
||||||
#navlinks {\
|
#navlinks {\
|
||||||
|
|||||||
1
Cakefile
1
Cakefile
@ -13,6 +13,7 @@ HEADER = """
|
|||||||
// @copyright 2009-2011 James Campos <james.r.campos@gmail.com>
|
// @copyright 2009-2011 James Campos <james.r.campos@gmail.com>
|
||||||
// @license MIT; http://en.wikipedia.org/wiki/Mit_license
|
// @license MIT; http://en.wikipedia.org/wiki/Mit_license
|
||||||
// @include http://boards.4chan.org/*
|
// @include http://boards.4chan.org/*
|
||||||
|
// @include http://images.4chan.org/*
|
||||||
// @include http://sys.4chan.org/*
|
// @include http://sys.4chan.org/*
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @updateURL https://raw.github.com/MayhemYDG/4chan-x/stable/4chan_x.user.js
|
// @updateURL https://raw.github.com/MayhemYDG/4chan-x/stable/4chan_x.user.js
|
||||||
|
|||||||
@ -1,6 +1,11 @@
|
|||||||
master
|
master
|
||||||
- mayhem
|
- mayhem
|
||||||
|
redirect 404'd pictures to archives when possible
|
||||||
|
the unread count will decrease when inlining quotes of unread posts
|
||||||
|
the report button can open multiple popups again
|
||||||
add omploader to the list of optional flavors (http://ompldr.org/upload?url1=)
|
add omploader to the list of optional flavors (http://ompldr.org/upload?url1=)
|
||||||
|
update archive redirections, add /lit/ and /u/
|
||||||
|
fit horizontally for Image Hover
|
||||||
|
|
||||||
2.23.7
|
2.23.7
|
||||||
- mayhem
|
- mayhem
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
config =
|
config =
|
||||||
main:
|
main:
|
||||||
Enhancing:
|
Enhancing:
|
||||||
'404 Redirect': [true, 'Redirect dead threads']
|
'404 Redirect': [true, 'Redirect dead threads and images']
|
||||||
'Keybinds': [true, 'Binds actions to keys']
|
'Keybinds': [true, 'Binds actions to keys']
|
||||||
'Time Formatting': [true, 'Arbitrarily formatted timestamps, using your local time']
|
'Time Formatting': [true, 'Arbitrarily formatted timestamps, using your local time']
|
||||||
'Report Button': [true, 'Add report buttons']
|
'Report Button': [true, 'Add report buttons']
|
||||||
@ -706,7 +706,7 @@ keybinds =
|
|||||||
when conf.submit
|
when conf.submit
|
||||||
;# QR
|
;# QR
|
||||||
when conf.unreadCountTo0
|
when conf.unreadCountTo0
|
||||||
unread.replies.length = 0
|
unread.replies = []
|
||||||
unread.updateTitle()
|
unread.updateTitle()
|
||||||
Favicon.update()
|
Favicon.update()
|
||||||
else
|
else
|
||||||
@ -1678,6 +1678,10 @@ quoteInline =
|
|||||||
root = if q.parentNode.nodeName is 'FONT' then q.parentNode else if q.nextSibling then q.nextSibling else q
|
root = if q.parentNode.nodeName is 'FONT' then q.parentNode else if q.nextSibling then q.nextSibling else q
|
||||||
if el = $.id id
|
if el = $.id id
|
||||||
inline = quoteInline.table id, el.innerHTML
|
inline = quoteInline.table id, el.innerHTML
|
||||||
|
if g.REPLY and conf['Unread Count'] and (i = unread.replies.indexOf el.parentNode.parentNode.parentNode) isnt -1
|
||||||
|
unread.replies.splice i, 1
|
||||||
|
unread.updateTitle()
|
||||||
|
Favicon.update()
|
||||||
if /\bbacklink\b/.test q.className
|
if /\bbacklink\b/.test q.className
|
||||||
$.after q.parentNode, inline
|
$.after q.parentNode, inline
|
||||||
$.addClass $.x('ancestor::table', el), 'forwarded' if conf['Forward Hiding']
|
$.addClass $.x('ancestor::table', el), 'forwarded' if conf['Forward Hiding']
|
||||||
@ -1821,7 +1825,7 @@ reportButton =
|
|||||||
$.on a, 'click', reportButton.report
|
$.on a, 'click', reportButton.report
|
||||||
report: ->
|
report: ->
|
||||||
url = "http://sys.4chan.org/#{g.BOARD}/imgboard.php?mode=report&no=#{$.x('preceding-sibling::input', @).name}"
|
url = "http://sys.4chan.org/#{g.BOARD}/imgboard.php?mode=report&no=#{$.x('preceding-sibling::input', @).name}"
|
||||||
id = "#{NAMESPACE}popup"
|
id = Date.now()
|
||||||
set = "toolbar=0,scrollbars=0,location=0,status=1,menubar=0,resizable=1,width=685,height=200"
|
set = "toolbar=0,scrollbars=0,location=0,status=1,menubar=0,resizable=1,width=685,height=200"
|
||||||
window.open url, id, set
|
window.open url, id, set
|
||||||
|
|
||||||
@ -1935,17 +1939,31 @@ Favicon =
|
|||||||
favicon.href = null
|
favicon.href = null
|
||||||
$.replace favicon, clone
|
$.replace favicon, clone
|
||||||
|
|
||||||
redirect = ->
|
redirect =
|
||||||
switch g.BOARD
|
init: ->
|
||||||
when 'a', 'jp', 'm', 'tg', 'tv'
|
url =
|
||||||
url = "http://oldarchive.foolz.us/#{g.BOARD}/thread/#{g.THREAD_ID}"
|
# waiting for https://github.com/FoOlRulez/FoOlFuuka/issues/11
|
||||||
when 'diy', 'g', 'sci'
|
if location.hostname is 'images.4chan.org'
|
||||||
url = "http://archive.installgentoo.net/#{g.BOARD}/thread/#{g.THREAD_ID}"
|
redirect.image g.BOARD, location.pathname.split('/')[3]
|
||||||
when '3', 'adv', 'an', 'ck', 'co', 'fa', 'fit', 'int', 'k', 'mu', 'n', 'o', 'p', 'po', 'pol', 'soc', 'sp', 'toy', 'trv', 'v', 'vp', 'x'
|
else if /^\d+$/.test g.THREAD_ID
|
||||||
url = "http://archive.no-ip.org/#{g.BOARD}/thread/#{g.THREAD_ID}"
|
redirect.thread()
|
||||||
else
|
location.href = url if url
|
||||||
url = "http://boards.4chan.org/#{g.BOARD}"
|
image: (board, filename) -> #board must be given, the image can originate from a cross-quote
|
||||||
location.href = url
|
switch board
|
||||||
|
when 'a', 'jp', 'm', 'tg', 'tv', 'u'
|
||||||
|
"http://archivethumb.foolz.us/board/#{board}/img/#{filename}"
|
||||||
|
thread: ->
|
||||||
|
switch g.BOARD
|
||||||
|
when 'a', 'jp', 'm', 'tg', 'tv', 'u'
|
||||||
|
"http://archive.foolz.us/#{g.BOARD}/thread/#{g.THREAD_ID}/"
|
||||||
|
when 'lit'
|
||||||
|
"http://fuuka.warosu.org/#{g.BOARD}/thread/#{g.THREAD_ID}"
|
||||||
|
when 'diy', 'g', 'sci'
|
||||||
|
"http://archive.installgentoo.net/#{g.BOARD}/thread/#{g.THREAD_ID}"
|
||||||
|
when '3', 'adv', 'an', 'ck', 'co', 'fa', 'fit', 'int', 'k', 'mu', 'n', 'o', 'p', 'po', 'pol', 'r9k', 'soc', 'sp', 'toy', 'trv', 'v', 'vp', 'x'
|
||||||
|
"http://archive.no-ip.org/#{g.BOARD}/thread/#{g.THREAD_ID}"
|
||||||
|
else
|
||||||
|
"http://boards.4chan.org/#{g.BOARD}"
|
||||||
|
|
||||||
imgHover =
|
imgHover =
|
||||||
init: ->
|
init: ->
|
||||||
@ -1956,7 +1974,7 @@ imgHover =
|
|||||||
$.on thumb, 'mouseout', ui.hoverend
|
$.on thumb, 'mouseout', ui.hoverend
|
||||||
mouseover: ->
|
mouseover: ->
|
||||||
ui.el = $.el 'img'
|
ui.el = $.el 'img'
|
||||||
id: 'iHover'
|
id: 'ihover'
|
||||||
src: @parentNode.href
|
src: @parentNode.href
|
||||||
$.add d.body, ui.el
|
$.add d.body, ui.el
|
||||||
|
|
||||||
@ -2022,23 +2040,26 @@ imgExpand =
|
|||||||
thumb.hidden = false
|
thumb.hidden = false
|
||||||
$.rm thumb.nextSibling
|
$.rm thumb.nextSibling
|
||||||
|
|
||||||
expand: (thumb) ->
|
expand: (thumb, url) ->
|
||||||
a = thumb.parentNode
|
a = thumb.parentNode
|
||||||
img = $.el 'img',
|
img = $.el 'img',
|
||||||
src: a.href
|
src: if url then url else a.href
|
||||||
if engine is 'gecko' and a.parentNode.className isnt 'op'
|
if engine is 'gecko' and a.parentNode.className isnt 'op'
|
||||||
filesize = $.x('preceding-sibling::span[@class="filesize"]', a).textContent
|
filesize = $.x('preceding-sibling::span[@class="filesize"]', a).textContent
|
||||||
max = filesize.match /(\d+)x/
|
max = filesize.match /(\d+)x/
|
||||||
img.style.maxWidth = "#{max[1]}px"
|
img.style.maxWidth = "#{max[1]}px"
|
||||||
$.on img, 'error', imgExpand.error
|
$.on img, 'error', imgExpand.error if conf['404 Redirect']
|
||||||
thumb.hidden = true
|
thumb.hidden = true
|
||||||
$.add a, img
|
$.add a, img
|
||||||
|
|
||||||
error: ->
|
error: ->
|
||||||
thumb = @previousSibling
|
thumb = @previousSibling
|
||||||
imgExpand.contract thumb
|
imgExpand.contract thumb
|
||||||
|
src = @src.split '/'
|
||||||
|
if url = redirect.image src[3], src[5]
|
||||||
|
imgExpand.expand thumb, url
|
||||||
#navigator.online is not x-browser/os yet
|
#navigator.online is not x-browser/os yet
|
||||||
if engine is 'webkit'
|
else if engine is 'webkit'
|
||||||
req = $.ajax @src, (->
|
req = $.ajax @src, (->
|
||||||
setTimeout imgExpand.retry, 10000, thumb if @status isnt 404
|
setTimeout imgExpand.retry, 10000, thumb if @status isnt 404
|
||||||
), type: 'head', event: 'onreadystatechange'
|
), type: 'head', event: 'onreadystatechange'
|
||||||
@ -2077,7 +2098,7 @@ Main =
|
|||||||
pathname = location.pathname[1..].split('/')
|
pathname = location.pathname[1..].split('/')
|
||||||
[g.BOARD, temp] = pathname
|
[g.BOARD, temp] = pathname
|
||||||
if temp is 'res'
|
if temp is 'res'
|
||||||
g.REPLY = temp
|
g.REPLY = true
|
||||||
g.THREAD_ID = pathname[2]
|
g.THREAD_ID = pathname[2]
|
||||||
else
|
else
|
||||||
g.PAGENUM = parseInt(temp) or 0
|
g.PAGENUM = parseInt(temp) or 0
|
||||||
@ -2165,10 +2186,10 @@ Main =
|
|||||||
|
|
||||||
onLoad: ->
|
onLoad: ->
|
||||||
$.off d, 'DOMContentLoaded', Main.onLoad
|
$.off d, 'DOMContentLoaded', Main.onLoad
|
||||||
if conf['404 Redirect'] and d.title is '4chan - 404' and /^\d+$/.test g.THREAD_ID
|
if conf['404 Redirect'] and d.title is '4chan - 404'
|
||||||
redirect()
|
redirect.init()
|
||||||
return
|
return
|
||||||
if not $ '#navtopr'
|
if not $('#navtopr') or location.hostname is 'images.4chan.org'
|
||||||
return
|
return
|
||||||
$.addClass d.body, engine
|
$.addClass d.body, engine
|
||||||
$.addStyle Main.css
|
$.addStyle Main.css
|
||||||
@ -2295,12 +2316,13 @@ Main =
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#qr, #qp, #updater, #stats, #iHover, #overlay, #navlinks {
|
#qr, #qp, #updater, #stats, #ihover, #overlay, #navlinks {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
}
|
}
|
||||||
|
|
||||||
#iHover {
|
#ihover {
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
|
max-width: 75%;
|
||||||
}
|
}
|
||||||
|
|
||||||
#navlinks {
|
#navlinks {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user