Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// clearOutput.js

(function () {
  /*global adventurejs A*/

  var p = adventurejs.Display.prototype;

  /**
   * Clear the game display.
   * @memberOf adventurejs.Display
   * @method adventurejs.Display#clearOutput
   */
  p.clearOutput = function Display_clearOutput() {
    this.outputEl.innerHTML = "";
  };
})();