1
0
Fork 0
forked from 0x2620/oxjs

resolve focus issues with video player find element

This commit is contained in:
rlx 2011-10-29 10:01:28 +00:00
commit ec7ec4d707
4 changed files with 48 additions and 35 deletions

View file

@ -3,7 +3,7 @@
Ox.Focus <o> Basic focus handler
@*/
Ox.Focus = function() {
Ox.Focus = (function() {
var stack = [];
return {
_print: function() {
@ -50,4 +50,4 @@ Ox.Focus = function() {
return stack.length ? stack[stack.length - 1] : null;
}
};
}();
}());