1
0
Fork 0
forked from 0x2620/oxjs

fixes for DocPanel

This commit is contained in:
rolux 2011-05-07 19:52:33 +02:00
commit f5f19c1c11
5 changed files with 18 additions and 15 deletions

View file

@ -10,11 +10,11 @@ Ox.JQueryElement <function> Wrapper for jQuery
Ox.JQueryElement = function($element) {
var that = this;
//@ Ox.JQueryElement.id <number> Unique id
//@ id <number> Unique id
that.id = Ox.uid();
//@ Ox.JQueryElement.ox <string> OxJS version
//@ ox <string> OxJS version
that.ox = Ox.VERSION;
//@ Ox.JQueryElement.$element <object> The jQuery DOM element
//@ $element <object> The jQuery DOM element
that.$element = $element.data({
oxid: that.id
});