From 4e119b98f140942d33b91783d043344389a3e773 Mon Sep 17 00:00:00 2001 From: rolux Date: Tue, 12 Jun 2012 18:09:25 +0200 Subject: [PATCH] minor cleanup --- source/Ox.UI/Ox.UI.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/Ox.UI/Ox.UI.js b/source/Ox.UI/Ox.UI.js index 16542a99..710a03be 100644 --- a/source/Ox.UI/Ox.UI.js +++ b/source/Ox.UI/Ox.UI.js @@ -373,11 +373,11 @@ Ox.load.UI = function(options, callback) { }; Ox.UI.IMAGE_CACHE = []; /*@ - Ox.UI.isElement check if object is an Ox.Element - (obj) -> true if object is an Ox.Element + Ox.UI.isElement Checks if an object is an Ox.Element + (obj) -> True if object is an Ox.Element @*/ - Ox.UI.isElement = function(obj) { - return Ox.isObject(obj) && 'oxid' in obj; + Ox.UI.isElement = function(object) { + return Ox.isObject(object) && 'oxid' in object; }; Ox.UI.PATH = Ox.PATH + 'Ox.UI/'; Ox.UI.SCROLLBAR_SIZE = $.browser.mozilla ? 16 : 12;