Sindbad~EG File Manager

Current Path : /var/www/moodledata/mdata-uautomaq/filedir/fd/be/
Upload File :
Current File : /var/www/moodledata/mdata-uautomaq/filedir/fd/be/fdbe0e03ae76e3a2b400504589c24540a85a71be

(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) {
    /** @alias H5P.MemoryGame.Counter# */
    var self = this;

    var current = 0;

    /**
     * @private
     */
    var update = function () {
      $container[0].innerText = current;
    };

    /**
     * Increment the counter.
     */
    self.increment = function () {
      current++;
      update();
    };

    /**
     * Revert counter back to its natural state
     */
    self.reset = function () {
      current = 0;
      update();
    };
  };

})(H5P.MemoryGame);

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists