From 4b757fb0a3e8fd484b6e952c6bb1d83af71ec453 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Thu, 15 May 2014 09:30:08 -0700 Subject: [PATCH] only need single quotes here --- src/Miscellaneous/Fourchan.coffee | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Miscellaneous/Fourchan.coffee b/src/Miscellaneous/Fourchan.coffee index 6f290d662..290c16265 100755 --- a/src/Miscellaneous/Fourchan.coffee +++ b/src/Miscellaneous/Fourchan.coffee @@ -4,19 +4,19 @@ Fourchan = board = g.BOARD.ID if board is 'g' - $.globalEval """ + $.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 board is 'sci' # https://github.com/MayhemYDG/4chan-x/issues/645#issuecomment-13704562 - $.globalEval """ + $.globalEval ''' window.addEventListener('jsmath', function(e) { if (jsMath.loaded) { // process one post @@ -27,7 +27,7 @@ Fourchan = jsMath.Autoload.LoadJsMath(); } }, false); - """ + ''' Post.callbacks.push name: 'Parse /sci/ math' cb: @math