beautify_js

This commit is contained in:
Ilya Kantor 2015-03-09 18:48:58 +03:00
parent 0febe4f5fd
commit 5c2f32e184
208 changed files with 3891 additions and 1474 deletions

View file

@ -1,5 +1,5 @@
function getWeekDay(date) {
var days = ['вс','пн','вт','ср','чт','пт','сб'] ;
var days = ['вс', 'пн', 'вт', 'ср', 'чт', 'пт', 'сб'];
return days[ date.getDay() ];
return days[date.getDay()];
}