en.javascript.info/2-ui/5-widgets/2-widgets-structure/6-voter-add-step/solution.view/step-voter.js
2015-02-18 21:23:40 +03:00

13 lines
396 B
JavaScript

function StepVoter(options) {
Voter.apply(this, arguments);
this._step = options.step || 1;
}
StepVoter.prototype = Object.create(Voter.prototype);
StepVoter.prototype._voteIncrease = function() {
this._voteElem.innerHTML = +this._voteElem.innerHTML + this._step;
};
StepVoter.prototype._voteDecrease = function() {
this._voteElem.innerHTML = +this._voteElem.innerHTML - this._step;
};