Blog edits

This commit is contained in:
Jeff Parsons 2016-03-16 14:39:56 -07:00
commit 87e275b5f1
51 changed files with 7494 additions and 1276 deletions

View file

@ -41,6 +41,11 @@
*
* However, when we're in "development mode" and running uncompiled code in debugger-less configurations,
* I would still like to skip loading debugger.js altogether. To do that, we must arrange for this additional file,
* nodebugger.js, to be loaded as early as possible, which explicitly UPDATES the value of DEBUGGER to false.
* nodebugger.js, to be loaded immediately after defines.js, *explicitly* overriding the previously defined value
* of DEBUGGER with *false*.
*
* Additionally, we must update any globals that depend on DEBUGGER (currently, BACKTRACK and SYMBOLS).
*/
var DEBUGGER = false;
DEBUGGER = false;
BACKTRACK = !COMPILED && DEBUGGER;
SYMBOLS = DEBUGGER;