1
0
Fork 0
forked from 0x2620/oxjs

change base 26 to bijective base 26

This commit is contained in:
rolux 2011-12-17 04:33:43 +05:30
commit 6374f6de6d
4 changed files with 24 additions and 13 deletions

View file

@ -23,6 +23,11 @@ Ox.ObjectInput = function(options, self) {
labelWidth: self.options.labelWidth,
width: self.options.width
})
.bindEvent({
change: function(data) {
// ...
}
})
.appendTo(that);
});

View file

@ -1,4 +1,4 @@
'use strict'
'use strict';
Ox.SelectInput = function(options, self) {