summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-01-23 15:28:59 +0400
committerAndrew Dolgov <[email protected]>2013-01-23 15:28:59 +0400
commitfd535b317cc55bf5f7e279f6bfcef514fcaafea5 (patch)
treef3e8cc0e19a6b540fa2f759cb4c6b992dbf83d69 /js
parent1610cdce82ce6755b85e08a8d99bf3239ee1a11c (diff)
switchPanelMode: fix css manipulation for firefox
Diffstat (limited to 'js')
-rw-r--r--js/tt-rss.js8
1 files changed, 4 insertions, 4 deletions
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();