diff --git a/services/web/public/coffee/ide.coffee b/services/web/public/coffee/ide.coffee index 57c89dc932..5c8c90c39d 100644 --- a/services/web/public/coffee/ide.coffee +++ b/services/web/public/coffee/ide.coffee @@ -76,7 +76,7 @@ define [ _abTestStartDate = new Date(Date.UTC(2016, 8, 28)) _userSignUpDate = new Date(window.user.signUpDate) - $scope.shouldABTestHeaderLabels = _userSignUpDate < _abTestStartDate + $scope.shouldABTestHeaderLabels = _userSignUpDate > _abTestStartDate $scope.headerLabelsABVariant = "" if ($scope.shouldABTestHeaderLabels) @@ -89,7 +89,6 @@ define [ variant: $scope.headerLabelsABVariant } - # Tracking code. $scope.$watch "ui.view", (newView, oldView) -> if newView? and newView != "editor" and newView != "pdf" diff --git a/services/web/public/stylesheets/app/editor/toolbar.less b/services/web/public/stylesheets/app/editor/toolbar.less index 2f088cf515..07e9481cad 100644 --- a/services/web/public/stylesheets/app/editor/toolbar.less +++ b/services/web/public/stylesheets/app/editor/toolbar.less @@ -137,9 +137,6 @@ } } -.toolbar.toolbar-with-labels { -} - .toolbar-label { display: inline-block; margin: 0 4px;