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