snappymail/dev/Component/Radio.js

30 lines
440 B
JavaScript
Raw Normal View History

(function () {
'use strict';
var
_ = require('_'),
AbstracRadio = require('Component/AbstracRadio')
;
/**
* @constructor
*
* @param {Object} oParams
*
* @extends AbstracRadio
*/
2014-10-30 23:09:48 +08:00
function RadioComponent(oParams)
{
AbstracRadio.call(this, oParams);
2014-10-30 23:09:48 +08:00
}
_.extend(RadioComponent.prototype, AbstracRadio.prototype);
module.exports = AbstracRadio.componentExportHelper(
RadioComponent, 'RadioComponent');
}());