From 8cf9ad236a8762c508ada73aa51cd7c858ac266c Mon Sep 17 00:00:00 2001 From: Zixaphir Date: Sun, 11 May 2014 16:28:56 -0700 Subject: [PATCH] I thought I fixed that already? OH WELL --- builds/4chan-X.user.js | 2 +- builds/crx/script.js | 2 +- src/General/Main.coffee | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js index a267988a0..ea02b7d72 100644 --- a/builds/4chan-X.user.js +++ b/builds/4chan-X.user.js @@ -14032,7 +14032,7 @@ return window.open('//sys.4chan.org/auth', 'This will steal your data.', 'left=0,top=0,width=500,height=255,toolbar=0,resizable=0'); }); $.before(styleSelector.previousSibling, [$.tn('['), passLink, $.tn(']\u00A0\u00A0')]); - $('link[href*="mobile"', d.head).disabled = true; + $('link[href*="mobile"]', d.head).disabled = true; } if (!Conf['JSON Navigation'] || g.VIEW === 'thread') { Main.initThread(); diff --git a/builds/crx/script.js b/builds/crx/script.js index a34773ebf..fe59eb8ae 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -14050,7 +14050,7 @@ return window.open('//sys.4chan.org/auth', 'This will steal your data.', 'left=0,top=0,width=500,height=255,toolbar=0,resizable=0'); }); $.before(styleSelector.previousSibling, [$.tn('['), passLink, $.tn(']\u00A0\u00A0')]); - $('link[href*="mobile"', d.head).disabled = true; + $('link[href*="mobile"]', d.head).disabled = true; } if (!Conf['JSON Navigation'] || g.VIEW === 'thread') { Main.initThread(); diff --git a/src/General/Main.coffee b/src/General/Main.coffee index 8874fdf19..6bc4b3669 100755 --- a/src/General/Main.coffee +++ b/src/General/Main.coffee @@ -195,7 +195,7 @@ Main = 'left=0,top=0,width=500,height=255,toolbar=0,resizable=0' $.before styleSelector.previousSibling, [$.tn '['; passLink, $.tn ']\u00A0\u00A0'] # Completely disable the mobile layout - $('link[href*="mobile"', d.head).disabled = true + $('link[href*="mobile"]', d.head).disabled = true # Parse HTML or skip it and start building from JSON. if !Conf['JSON Navigation'] or g.VIEW is 'thread'