mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-26 17:16:07 +08:00
29 lines
470 B
JavaScript
29 lines
470 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
_ = require('_'),
|
|
|
|
AbstracCheckbox = require('Component/AbstracCheckbox')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
*
|
|
* @param {Object} oParams
|
|
*
|
|
* @extends AbstracCheckbox
|
|
*/
|
|
function CheckboxComponent(oParams)
|
|
{
|
|
AbstracCheckbox.call(this, oParams);
|
|
}
|
|
|
|
_.extend(CheckboxComponent.prototype, AbstracCheckbox.prototype);
|
|
|
|
module.exports = AbstracCheckbox.componentExportHelper(
|
|
CheckboxComponent, 'CheckboxComponent');
|
|
|
|
}());
|