diff --git a/builds/appchan-x.user.js b/builds/appchan-x.user.js index b3f7fb797..dd4624249 100644 --- a/builds/appchan-x.user.js +++ b/builds/appchan-x.user.js @@ -18342,7 +18342,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 a5c83d728..057b23d75 100644 --- a/builds/crx/script.js +++ b/builds/crx/script.js @@ -18359,7 +18359,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 c5a7c9725..08dfd7e20 100644 --- a/src/General/Main.coffee +++ b/src/General/Main.coffee @@ -204,7 +204,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'