Commit 69a3e3d5 authored by Johannes Bill's avatar Johannes Bill

holiday model finished

parent b47512ad
.idea/ .idea/
node_modules node_modules
bower_components bower_components
.DS_Store
\ No newline at end of file
...@@ -36,7 +36,7 @@ var holidayToSpecificMap = (function() { ...@@ -36,7 +36,7 @@ var holidayToSpecificMap = (function() {
for (var i = 0; i < hArray.length; i++) { for (var i = 0; i < hArray.length; i++) {
var hd = hArray[i]; var hd = hArray[i];
if(!hMap[hd]) if(!hMap[hd])
hMap[hd] = {region: [], special: []}; hMap[hd] = [];
if(cKey == "default") hMap[hd].region.push(rKey); if(cKey == "default") hMap[hd].region.push(rKey);
else hMap[hd].special.push(cKey); else hMap[hd].special.push(cKey);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment