From: Alan Knowles Date: Fri, 13 Jul 2018 03:52:07 +0000 (+0800) Subject: domains/remove_print_css.js X-Git-Url: http://git.roojs.org/?p=app.webkitpdf;a=commitdiff_plain;h=ab29839fd49283578307b499d5a062aa56f10b3d domains/remove_print_css.js --- diff --git a/domains/remove_print_css.js b/domains/remove_print_css.js index ac136ce..b2e7d65 100644 --- a/domains/remove_print_css.js +++ b/domains/remove_print_css.js @@ -45,12 +45,19 @@ } // see if getting rid of 'only' from screen works. - if(!ar[i].cssText.match(/only\s+screen/)) { - newsheet += ar[i].cssText +"\n"; + if(ar[i].cssText.match(/only\s+screen/)) { + var str = ar[i].cssText.replace(/only\s+screen/, ''); + newsheet += str +"\n"; + continue; + } + if(ar[i].cssText.match(/screen\s+and/)) { + var str = ar[i].cssText.replace(/screen\s+and/, ''); + newsheet += str +"\n"; continue; } - var str = ar[i].cssText.replace(/only\s+screen/, 'screen'); - newsheet += str +"\n"; + newsheet += ar[i].cssText +"\n"; + + }