tapspace
Version:
A zoomable user interface lib for web apps
16 lines (15 loc) • 320 B
JavaScript
module.exports = function () {
// @Component:getElement()
//
// Get the affine HTML element of the node.
// Each Component has one HTML element.
// This element can wrap further affine or non-affine content.
//
// Return
// an HTMLElement
//
// Complexity:
// O(1)
//
return this.element
}