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