Removed a console.log and tweaked some minor things.

This commit is contained in:
Bram van der Veen 2015-06-21 17:14:40 +02:00
parent 280645d548
commit 78ac929f88
2 changed files with 2 additions and 4 deletions

View file

@ -77,7 +77,7 @@ div.schedule {
&:hover {
-webkit-transition: 1s ease;
width: 160px;
width: 200px;
}
&:first-child span {

View file

@ -34,13 +34,11 @@ function schedule_types(page) {
for (element of extract) {
element != '' ? types.push({
'letter': element.substr(0, 1),
'value' : element.match(/.*(?:rooster)|t\/m|\d\d\s\w{3}/g).join(' ').slice(1).replace(/rooster/, ''),
'value' : element.match(/.*rooster|t\/m|\d\d\s\w{3}/g).join(' ').slice(1),
'tab': tab++
}) : null;
}
console.log(types);
return types;
}