1
0
Fork 0
forked from 0x2620/oxjs

add resize functionality to calendar

This commit is contained in:
rlx 2011-10-03 13:23:40 +00:00
commit ea76fed699
2 changed files with 19 additions and 11 deletions

View file

@ -87,6 +87,8 @@ Ox.Checkbox = function(options, self) {
self.setOption = function(key, value) {
if (key == 'checked') {
that.toggleChecked();
} else if (key == 'title') {
self.$title.options({title: value});
}
};