1
0
Fork 0
forked from 0x2620/oxjs

handle update of label option

This commit is contained in:
rolux 2014-02-16 07:06:48 +00:00
commit 15444fe5a9
4 changed files with 11 additions and 0 deletions

View file

@ -37,6 +37,9 @@ Ox.Checkbox = function(options, self) {
self.$button.options({disabled: disabled});
self.$title && self.$title.options({disabled: disabled});
},
label: function() {
self.$label.options({title: self.options.label});
},
title: function() {
self.$title.options({title: self.options.title});
},