/pyjs/tests/test026.js
JavaScript | 12 lines | 12 code | 0 blank | 0 comment | 2 complexity | ce5e54243a744d6c81de1da5e2c246c5 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0
1__SchoolCalendarWidget.prototype.__class__ = "SchoolCalendarWidget"; 2function SchoolCalendarWidget() { 3 return new __SchoolCalendarWidget(); 4} 5function __SchoolCalendarWidget() { 6} 7__SchoolCalendarWidget.prototype.setDayIncluded = function(day, included) { 8 if ((this.daysFilter.__getitem__(day) == included)) { 9 return; 10 } 11 this.daysFilter.__setitem__(day, included); 12};