1
0
Fork 0
forked from 0x2620/oxjs

revised controls (find, volume)

This commit is contained in:
rolux 2011-05-16 20:05:29 +02:00
commit 117c6bff62
4 changed files with 553 additions and 298 deletions

View file

@ -733,6 +733,11 @@ Ox.Input = function(options, self) {
}
};
that.blurInput = function() {
self.$input.blur();
return that;
};
that.focusInput = function(select) {
select = Ox.isUndefined(select) ? true : select;
self.$input.focus();