minor cleanup
This commit is contained in:
parent
e415a85d06
commit
4e119b98f1
1 changed files with 4 additions and 4 deletions
|
@ -373,11 +373,11 @@ Ox.load.UI = function(options, callback) {
|
||||||
};
|
};
|
||||||
Ox.UI.IMAGE_CACHE = [];
|
Ox.UI.IMAGE_CACHE = [];
|
||||||
/*@
|
/*@
|
||||||
Ox.UI.isElement <f> check if object is an Ox.Element
|
Ox.UI.isElement <f> Checks if an object is an Ox.Element
|
||||||
(obj) -> <b> true if object is an Ox.Element
|
(obj) -> <b> True if object is an Ox.Element
|
||||||
@*/
|
@*/
|
||||||
Ox.UI.isElement = function(obj) {
|
Ox.UI.isElement = function(object) {
|
||||||
return Ox.isObject(obj) && 'oxid' in obj;
|
return Ox.isObject(object) && 'oxid' in object;
|
||||||
};
|
};
|
||||||
Ox.UI.PATH = Ox.PATH + 'Ox.UI/';
|
Ox.UI.PATH = Ox.PATH + 'Ox.UI/';
|
||||||
Ox.UI.SCROLLBAR_SIZE = $.browser.mozilla ? 16 : 12;
|
Ox.UI.SCROLLBAR_SIZE = $.browser.mozilla ? 16 : 12;
|
||||||
|
|
Loading…
Reference in a new issue