Browse Source

UI-2849: Fix switch statement keyword spacing (#33)

4.3
Joris Tirado 8 years ago
committed by GitHub
parent
commit
c4bb4c6ec5
1 changed files with 5 additions and 5 deletions
  1. +5
    -5
      submodules/strategy/strategy.js

+ 5
- 5
submodules/strategy/strategy.js View File

@ -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));


Loading…
Cancel
Save