/pyjs/tests/test026.js
http://pyjamas.googlecode.com/ · JavaScript · 12 lines · 12 code · 0 blank · 0 comment · 2 complexity · ce5e54243a744d6c81de1da5e2c246c5 MD5 · raw file
- __SchoolCalendarWidget.prototype.__class__ = "SchoolCalendarWidget";
- function SchoolCalendarWidget() {
- return new __SchoolCalendarWidget();
- }
- function __SchoolCalendarWidget() {
- }
- __SchoolCalendarWidget.prototype.setDayIncluded = function(day, included) {
- if ((this.daysFilter.__getitem__(day) == included)) {
- return;
- }
- this.daysFilter.__setitem__(day, included);
- };