From ab7f8f27fed348d05ab5af1dfcfcc503238f8473 Mon Sep 17 00:00:00 2001 From: "James B. Pollack" Date: Tue, 12 Apr 2016 16:22:53 -0700 Subject: [PATCH] clear stuff from edit --- examples/edit.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/examples/edit.js b/examples/edit.js index e22bb28cd7..e3bea2e954 100644 --- a/examples/edit.js +++ b/examples/edit.js @@ -95,10 +95,6 @@ var SHOULD_SHOW_PROPERTY_MENU = false; var INSUFFICIENT_PERMISSIONS_ERROR_MSG = "You do not have the necessary permissions to edit on this domain." var INSUFFICIENT_PERMISSIONS_IMPORT_ERROR_MSG = "You do not have the necessary permissions to place items on this domain." -var modelURLs = [ - "Insert the URL to your FBX" -]; - var mode = 0; var isActive = false; @@ -432,7 +428,7 @@ var toolBar = (function() { } if (newModelButton === toolBar.clicked(clickedOverlay)) { - url = Window.prompt("Model URL", modelURLs[Math.floor(Math.random() * modelURLs.length)]); + url = Window.prompt("Model URL"); if (url !== null && url !== "") { addModel(url); }