From e214aae719c10953c4c3a7949c9bd02d6983b045 Mon Sep 17 00:00:00 2001 From: Asaad Mahmood Date: Mon, 14 Mar 2016 22:35:57 +0500 Subject: PLT-963 - Improving scss structure --- web/react/components/sidebar_right.jsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'web/react/components/sidebar_right.jsx') diff --git a/web/react/components/sidebar_right.jsx b/web/react/components/sidebar_right.jsx index 14853d3a3..fc9888626 100644 --- a/web/react/components/sidebar_right.jsx +++ b/web/react/components/sidebar_right.jsx @@ -55,27 +55,27 @@ export default class SidebarRight extends React.Component { var windowWidth = $(window).outerWidth(); var sidebarRightWidth = $('.sidebar--right').outerWidth(); - $('.inner__wrap').removeClass('.move--right'); - $('.inner__wrap').addClass('move--left'); + $('.inner-wrap').removeClass('.move--right'); + $('.inner-wrap').addClass('move--left'); $('.sidebar--left').removeClass('move--right'); $('.sidebar--right').addClass('move--left'); //$('.sidebar--right').prepend(''); if (this.state.search_visible || this.state.post_right_visible) { if (windowWidth > 960) { - $('.inner__wrap').velocity({marginRight: sidebarRightWidth}, {duration: 500, easing: 'easeOutSine'}); + $('.inner-wrap').velocity({marginRight: sidebarRightWidth}, {duration: 500, easing: 'easeOutSine'}); $('.sidebar--right').velocity({translateX: 0}, {duration: 500, easing: 'easeOutSine'}); } else { - $('.inner__wrap, .sidebar--right').attr('style', ''); + $('.inner-wrap, .sidebar--right').attr('style', ''); } } else { if (windowWidth > 960) { - $('.inner__wrap').velocity({marginRight: 0}, {duration: 500, easing: 'easeOutSine'}); + $('.inner-wrap').velocity({marginRight: 0}, {duration: 500, easing: 'easeOutSine'}); $('.sidebar--right').velocity({translateX: sidebarRightWidth}, {duration: 500, easing: 'easeOutSine'}); } else { - $('.inner__wrap, .sidebar--right').attr('style', ''); + $('.inner-wrap, .sidebar--right').attr('style', ''); } - $('.inner__wrap').removeClass('move--left').removeClass('move--right'); + $('.inner-wrap').removeClass('move--left').removeClass('move--right'); $('.sidebar--right').removeClass('move--left'); return (
-- cgit v1.2.3-1-g7c22