From 12338783cc99240c2cd09b40604fe7371f0f87ae Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Fri, 28 Jun 2013 10:07:02 -0600 Subject: [PATCH] Load scripts in RAW mode by default On-the-fly compilation is a frustrating default. --- examples/loader.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/loader.js b/examples/loader.js index 684e870b41..58d9dd7d83 100644 --- a/examples/loader.js +++ b/examples/loader.js @@ -8,7 +8,7 @@ * * * hostname - the current hostname (window.location.hostname) * * port - 9810 - * * mode - ADVANCED + * * mode - RAW * * id - id param in loader.js query string; defaults to 'ol' if not set * * Usage: @@ -20,7 +20,7 @@ var params = { hostname: window.location.hostname, port: '9810', - mode: 'ADVANCED', + mode: 'RAW', id: 'ol' }; if (window.location.protocol === 'file:' && !params.hostname) {