// 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 = "";
};
})();