This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* UIElement class | |
* @param [tagName] {String} the nodeName of the HTMLElement to bind to | |
* @param [ctx] {Function} this function will be called to decorate the new instance | |
*/ | |
var UIElement = function (arg, ctx) { | |
var element, | |
context; | |
//only one argument given |
NewerOlder