UI
Summary
The UI class is the class for all user interface elements. It is not directly used, but extended by many other classes.
Constructor
UI
Syntax
UI
()
Summary
Methods
Properties
$el
Syntax
$el
Unknown
Summary
Zepto/jQuery object for DOM element
Example:
$appDOMElement = m.app.ui.$el;
$appDOMElement.on("tap", function() {
console.log("Header was tapped.");
});
el
Syntax
el
Unknown
Summary
DOM element
Example:
appDOMElement = m.app.ui.el;
appDOMElement.addEventListener("touchend", function() {
console.log("Header was touched.");
});