Skip to content

Commit

Permalink
UI-1076: Fixed schema error for temporal rules
Browse files Browse the repository at this point in the history
  • Loading branch information
JRMaitre committed Jan 27, 2015
1 parent 81b39ad commit 173335a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions submodules/strategy/strategy.js
Original file line number Diff line number Diff line change
Expand Up @@ -1972,8 +1972,8 @@ define(function(require){
interval: 1,
name: val,
type: "main_weekdays",
time_window_start: "32400", // 9:00AM
time_window_stop: "61200", // 5:00PM
time_window_start: 32400, // 9:00AM
time_window_stop: 61200, // 5:00PM
wdays: [val.substring(4).toLowerCase()]
}
},
Expand All @@ -1996,8 +1996,8 @@ define(function(require){
interval: 1,
name: "MainLunchHours",
type: "main_lunchbreak",
time_window_start: "43200",
time_window_stop: "46800",
time_window_start: 43200,
time_window_stop: 46800,
wdays: self.weekdays
}
},
Expand Down

0 comments on commit 173335a

Please sign in to comment.