1
0
Fork 0
forked from 0x2620/oxjs

new-style find-as-you-type for video editor

This commit is contained in:
rolux 2011-05-19 19:58:00 +02:00
commit 9f4f9dfa39
135 changed files with 9182 additions and 44 deletions

View file

@ -154,8 +154,9 @@ Ox.Button = function(options, self) {
@*/
that.toggleDisabled = function() {
that.options({
enabled: !self.options.disabled
disabled: !self.options.disabled
});
return that;
//self.options.disabled = !self.options.disabled;
}
@ -167,6 +168,7 @@ Ox.Button = function(options, self) {
that.options({
selected: !self.options.selected
});
return that;
//self.options.selected = !self.options.selected;
}
@ -180,6 +182,7 @@ Ox.Button = function(options, self) {
self.$tooltip && self.$tooltip.options({
title: self.tooltips[self.selectedTitle]
});
return that;
}
return that;