From 5e54b193ca54d848553c12c9f580ca8fe59fc34c Mon Sep 17 00:00:00 2001 From: Pete Richards Date: Thu, 24 Mar 2016 13:14:53 -0700 Subject: [PATCH] [Style] remove unnecessary parenthesis See comment https://github.com/nasa/openmct/pull/782/files#r57380540 --- platform/features/timeline/src/directives/MCTSwimlaneDrop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/features/timeline/src/directives/MCTSwimlaneDrop.js b/platform/features/timeline/src/directives/MCTSwimlaneDrop.js index d8ebadba8f..2c181a0fa0 100644 --- a/platform/features/timeline/src/directives/MCTSwimlaneDrop.js +++ b/platform/features/timeline/src/directives/MCTSwimlaneDrop.js @@ -108,7 +108,7 @@ define( dragOver(e, element, swimlane); - if ((highlightBottom !== swimlane.highlightBottom()) || + if (highlightBottom !== swimlane.highlightBottom() || highlight !== swimlane.highlight()) { scope.$apply(); }