UNPKG

form-builder

Version:

A node js library for building forms and form elements

11 lines (7 loc) 250 B
var BooleanEntry = require('./BooleanEntry'); function Radio(attributes, form) { BooleanEntry.call(this, attributes, form); this.attr('type', 'radio'); } Radio.prototype = Object.create(BooleanEntry.prototype); module.exports = Radio;