From 231fd46cd21617872fbc910cb840d5be5924defa Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 23 May 2012 17:00:34 -0400 Subject: [PATCH] Ensure applet is hidden in perf/index.html. Former-commit-id: ee23b966eca9148bbecd8d0826d954e755d232fe --- perf/index.html | 4 ++++ perf/perf.js | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/perf/index.html b/perf/index.html index 52adf326c..04f6d35a6 100644 --- a/perf/index.html +++ b/perf/index.html @@ -9,6 +9,10 @@ padding: 0; height: 100%; } + applet { + position: absolute; + left: -9999em; + } diff --git a/perf/perf.js b/perf/perf.js index fffc1557b..03810e080 100644 --- a/perf/perf.js +++ b/perf/perf.js @@ -13,7 +13,7 @@ /** Load Lo-Dash */ var lodash = window.lodash || ( - lodash = load('../lodash.min.js') || window._, + lodash = load('../lodash.js') || window._, lodash = lodash._ || lodash, lodash.noConflict() ); @@ -21,7 +21,7 @@ /** Load Underscore */ var _ = window._ || ( - _ = load('../vendor/underscore/underscore-min.js') || window._, + _ = load('../vendor/underscore/underscore.js') || window._, _._ || _ );