1
0
Fork 0
forked from 0x2620/oxjs

Ox.elements -> Ox.

This commit is contained in:
rlx 2014-09-25 18:47:29 +02:00
commit 8e335ba4f6
8 changed files with 21 additions and 21 deletions

View file

@ -38,8 +38,8 @@ Ox.SCROLLBAR_SIZE = Ox.UI.SCROLLBAR_SIZE = $.browser.webkit ? 8 : (function() {
//@ Ox.UI_PATH <str> Path of Ox UI
Ox.UI_PATH = Ox.UI.PATH = Ox.PATH + 'Ox.UI/';
//@ Ox.elements <o> Reference to all Ox Elements
Ox.elements = Ox.$elements = Ox.UI.elements = {};
//@ Ox.$elements <o> Reference to all Ox Elements
Ox.$elements = Ox.UI.elements = {};
/*@
Ox.getImageData <f> Returns properties of an Ox UI image
@ -109,7 +109,7 @@ Ox.getImageURL = Ox.cache(function(name, color, theme) {
//@ Ox.getOxElement <f> Returns the Ox.Element of a DOM element, or `undefined`
Ox.getOxElement = function(element) {
return Ox.elements[$(element).data('oxid')];
return Ox.$elements[$(element).data('oxid')];
};
/*@