Small fixes

This commit is contained in:
RainLoop Team 2014-10-30 19:09:48 +04:00
parent 256b624366
commit 1638b55411
15 changed files with 41 additions and 45 deletions

View file

@ -20,8 +20,8 @@
*
* @extends AbstractComponent
*/
function AbstractInput(oParams) {
function AbstractInput(oParams)
{
AbstractComponent.call(this);
this.value = oParams.value || '';
@ -63,7 +63,7 @@
this.trigger.subscribe(this.setTriggerState, this)
);
}
};
}
AbstractInput.prototype.setTriggerState = function (nValue)
{