From c12f192c3ab405d10a6b11ddfdd6aa1c7f597f91 Mon Sep 17 00:00:00 2001 From: Seiji Emery Date: Thu, 27 Aug 2015 21:44:55 -0700 Subject: [PATCH] bugfix... Apparently I didn't test that -_- --- examples/example/entities/platform.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/example/entities/platform.js b/examples/example/entities/platform.js index ea9d2fd85d..3d6744b364 100644 --- a/examples/example/entities/platform.js +++ b/examples/example/entities/platform.js @@ -15,7 +15,7 @@ // UI and debug console implemented using uiwidgets / 2d overlays Script.include("../../libraries/uiwidgets.js"); -if (typeof('UI') === 'undefined') { // backup link in case the user downloaded this somewhere +if (typeof(UI) === 'undefined') { // backup link in case the user downloaded this somewhere Script.include('http://public.highfidelity.io/scripts/libraries/uiwidgets.js'); }