From fd535b317cc55bf5f7e279f6bfcef514fcaafea5 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 23 Jan 2013 15:28:59 +0400 Subject: switchPanelMode: fix css manipulation for firefox --- js/tt-rss.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'js/tt-rss.js') diff --git a/js/tt-rss.js b/js/tt-rss.js index a5d01f6a5..ab1ab53d2 100644 --- a/js/tt-rss.js +++ b/js/tt-rss.js @@ -1011,9 +1011,9 @@ function switchPanelMode(wide) { dijit.byId("content-insert").domNode.setStyle({width: '50%', height: 'auto', - 'border-top-width': '0px' }); + borderTopWidth: '0px' }); - $("headlines-toolbar").setStyle({ 'border-bottom-width': '0px' }); + $("headlines-toolbar").setStyle({ borderBottomWidth: '0px' }); } else { @@ -1021,9 +1021,9 @@ function switchPanelMode(wide) { dijit.byId("content-insert").domNode.setStyle({width: 'auto', height: '50%', - 'border-top-width': '1px'}); + borderTopWidthidth: '1px'}); - $("headlines-toolbar").setStyle({ 'border-bottom-width': '1px' }); + $("headlines-toolbar").setStyle({ borderBottomWidth: '1px' }); } closeArticlePanel(); -- cgit v1.2.3