mirror of
https://github.com/RainLoop/rainloop-webmail.git
synced 2026-02-05 11:34:54 +01:00
30 lines
440 B
JavaScript
30 lines
440 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
|
|
AbstracRadio = require('Component/AbstracRadio')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
*
|
|
* @param {Object} oParams
|
|
*
|
|
* @extends AbstracRadio
|
|
*/
|
|
function RadioComponent(oParams)
|
|
{
|
|
AbstracRadio.call(this, oParams);
|
|
}
|
|
|
|
_.extend(RadioComponent.prototype, AbstracRadio.prototype);
|
|
|
|
module.exports = AbstracRadio.componentExportHelper(
|
|
RadioComponent, 'RadioComponent');
|
|
|
|
}());
|