66 lines
2.1 KiB
CoffeeScript
Executable File
66 lines
2.1 KiB
CoffeeScript
Executable File
Fourchan =
|
|
init: ->
|
|
return unless g.VIEW in ['index', 'thread']
|
|
|
|
if g.BOARD.ID is 'g'
|
|
$.globalEval '''
|
|
window.addEventListener('prettyprint', function(e) {
|
|
window.dispatchEvent(new CustomEvent('prettyprint:cb', {
|
|
detail: prettyPrintOne(e.detail)
|
|
}));
|
|
}, false);
|
|
'''
|
|
Post.callbacks.push
|
|
name: 'Parse /g/ code'
|
|
cb: @code
|
|
|
|
if g.BOARD.ID is 'sci'
|
|
$.globalEval '''
|
|
window.addEventListener('jsmath', function(e) {
|
|
if (!jsMath) return;
|
|
if (jsMath.loaded) {
|
|
// process one post
|
|
jsMath.ProcessBeforeShowing(e.target);
|
|
} else if (jsMath.Autoload && jsMath.Autoload.checked) {
|
|
// load jsMath and process whole document
|
|
jsMath.Autoload.Script.Push('ProcessBeforeShowing', [null]);
|
|
jsMath.Autoload.LoadJsMath();
|
|
}
|
|
}, false);
|
|
'''
|
|
Post.callbacks.push
|
|
name: 'Parse /sci/ math'
|
|
cb: @math
|
|
CatalogThread.callbacks.push
|
|
name: 'Parse /sci/ math'
|
|
cb: @math
|
|
|
|
# Disable 4chan's ID highlighting (replaced by IDHighlight) and reported post hiding.
|
|
Main.ready ->
|
|
$.globalEval '''
|
|
(function() {
|
|
window.clickable_ids = false;
|
|
var nodes = document.querySelectorAll('.posteruid, .capcode');
|
|
for (var i = 0; i < nodes.length; i++) {
|
|
nodes[i].removeEventListener("click", window.idClick, false);
|
|
}
|
|
window.removeEventListener("message", Report.onMessage, false);
|
|
})();
|
|
'''
|
|
|
|
code: ->
|
|
return if @isClone
|
|
apply = (e) ->
|
|
pre.innerHTML = e.detail
|
|
$.addClass pre, 'prettyprinted'
|
|
$.on window, 'prettyprint:cb', apply
|
|
for pre in $$ '.prettyprint:not(.prettyprinted)', @nodes.comment
|
|
$.event 'prettyprint', pre.innerHTML, window
|
|
$.off window, 'prettyprint:cb', apply
|
|
return
|
|
|
|
math: ->
|
|
return if (@isClone and doc.contains @origin.nodes.root) or !$ '.math', @nodes.comment
|
|
$.asap (=> doc.contains @nodes.comment), =>
|
|
$.event 'jsmath', null, @nodes.comment
|