h5p-memory-game/counter.js

40 lines
705 B
JavaScript
Raw Normal View History

(function (MemoryGame) {
/**
* Keeps track of the number of cards that has been turned
*
* @class H5P.MemoryGame.Counter
* @param {H5P.jQuery} $container
*/
MemoryGame.Counter = function ($container) {
2017-02-13 14:42:34 +01:00
/** @alias H5P.MemoryGame.Counter# */
var self = this;
var current = 0;
2017-02-13 14:42:34 +01:00
/**
* @private
*/
var update = function () {
$container[0].innerText = current;
};
/**
* Increment the counter.
*/
self.increment = function () {
current++;
2017-02-13 14:42:34 +01:00
update();
};
/**
* Revert counter back to its natural state
*/
self.reset = function () {
current = 0;
update();
};
};
})(H5P.MemoryGame);