From c4bb4c6ec51b4d2bc2cf3930bdb7ccc2a25e6932 Mon Sep 17 00:00:00 2001 From: Joris Tirado Date: Mon, 31 Jul 2017 11:29:13 -0700 Subject: [PATCH] UI-2849: Fix switch statement keyword spacing (#33) --- submodules/strategy/strategy.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/submodules/strategy/strategy.js b/submodules/strategy/strategy.js index 3e265f8..0c6cca5 100644 --- a/submodules/strategy/strategy.js +++ b/submodules/strategy/strategy.js @@ -726,11 +726,11 @@ define(function(require) { }, template; - _.each(self.weekdayLabels, function(val) { - if (strategyData.temporalRules.weekdays[val].id in strategyData.callflows.MainCallflow.flow.children) { - templateData.afterhours = true; - } - }); + _.each(self.weekdayLabels, function(val) { + if (strategyData.temporalRules.weekdays[val].id in strategyData.callflows.MainCallflow.flow.children) { + templateData.afterhours = true; + } + }); template = $(monster.template(self, 'strategy-' + templateName, templateData));