UNPKG

toloframework

Version:

Javascript/HTML/CSS compiler for Firefox OS or nodewebkit apps using modules in the nodejs style.

16 lines (13 loc) 283 B
/** * @module Input */ var Util = require("../util"); /** * @example * <w:input data="name" valid="@popup:welcome"></w:input> */ module.exports.compile = function(root) { Util.fireable(this, root); root.name = "input"; root.extra.init.data = root.attribs.data; };