1
0
Fork 0
forked from 0x2620/oxjs

cleanup docs, fix children/find calls

This commit is contained in:
j 2012-05-22 15:14:40 +02:00
commit b9e80c9d75
88 changed files with 157 additions and 253 deletions

View file

@ -1,13 +1,10 @@
'use strict';
/*@
Ox.JQueryElement <function> Wrapper for jQuery
Ox.JQueryElement <f> Wrapper for jQuery
($element) -> <object> Wrapped jQuery DOM element
$element <object> jQuery DOM Element
@*/
// fixme: now that children(), find() work, change code to call find directly.
Ox.JQueryElement = function($element) {
var that = this;
//@ id <number> Unique id
@ -50,4 +47,4 @@ Ox.methods($('<div>'), true).forEach(function(method) {
&& Ox.UI.elements[id = ret.data('oxid')]
? Ox.UI.elements[id] : ret;
};
});
});