Added more demos and support for mixed-case properties (including a new 'debugger' property in Markdown files)

This commit is contained in:
Jeff Parsons 2016-03-05 18:09:41 -08:00
commit 7ca64fcea5
162 changed files with 84341 additions and 345 deletions

View file

@ -3899,16 +3899,16 @@ if (DEBUGGER) {
};
/**
* runCPU(fOnClick)
* runCPU(fSetFocus)
*
* @this {Debugger}
* @param {boolean} [fOnClick] is true if called from a click handler that might have stolen focus
* @param {boolean} [fSetFocus] is true to give the CPU focus
* @return {boolean} true if run request successful, false if not
*/
Debugger.prototype.runCPU = function(fOnClick)
Debugger.prototype.runCPU = function(fSetFocus)
{
if (!this.isCPUAvail()) return false;
this.cpu.runCPU(fOnClick);
this.cpu.runCPU(fSetFocus);
return true;
};