123456789101112131415161718192021222324252627282930313233343536 |
- var Node = require('./node');
- var Box = require('./box');
- function RadioSet(options) {
- if (!(this instanceof Node)) {
- return new RadioSet(options);
- }
- options = options || {};
-
-
- Box.call(this, options);
- }
- RadioSet.prototype.__proto__ = Box.prototype;
- RadioSet.prototype.type = 'radio-set';
- module.exports = RadioSet;
|