From ab29839fd49283578307b499d5a062aa56f10b3d Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 13 Jul 2018 11:52:07 +0800 Subject: [PATCH] domains/remove_print_css.js --- domains/remove_print_css.js | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) 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"; + + } -- 2.39.2