From ccecce77de1ba7a96fbed2da5fa573af3860487f Mon Sep 17 00:00:00 2001 From: Dante Ruiz Date: Mon, 12 Dec 2016 23:21:14 +0000 Subject: [PATCH] removed unneeded whitespace --- scripts/system/libraries/WebTablet.js | 6 ++---- scripts/system/marketplaces/marketplace.js | 1 - 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/scripts/system/libraries/WebTablet.js b/scripts/system/libraries/WebTablet.js index 5f0891d642..115a7ed262 100644 --- a/scripts/system/libraries/WebTablet.js +++ b/scripts/system/libraries/WebTablet.js @@ -15,7 +15,7 @@ var DEFAULT_DPI = 32; var DEFAULT_WIDTH = 0.5; -var TABLET_URL = "https://s3.amazonaws.com/hifi-public/tony/tablet.fbx" +var TABLET_URL = "https://s3.amazonaws.com/hifi-public/tony/tablet.fbx" // returns object with two fields: // * position - position in front of the user // * rotation - rotation of entity so it faces the user. @@ -39,7 +39,7 @@ function calcSpawnInfo() { } // ctor -WebTablet = function (url, width, dpi, location, clientOnly) { +WebTablet = function (url, width, dpi, location, clientOnly) { var _this = this; var ASPECT = 4.0 / 3.0; var WIDTH = width || DEFAULT_WIDTH; @@ -71,8 +71,6 @@ WebTablet = function (url, width, dpi, location, clientOnly) { this.tabletEntityID = Entities.addEntity(tabletProperties, clientOnly); - - var WEB_ENTITY_REDUCTION_FACTOR = {x: 0.78, y: 0.85}; var WEB_ENTITY_Z_OFFSET = -0.01; var HOME_BUTTON_Y_OFFSET = -0.32; diff --git a/scripts/system/marketplaces/marketplace.js b/scripts/system/marketplaces/marketplace.js index 67d335c4c3..04e59697d1 100644 --- a/scripts/system/marketplaces/marketplace.js +++ b/scripts/system/marketplaces/marketplace.js @@ -30,7 +30,6 @@ var TOOLBAR_MARGIN_Y = 0; var marketplaceVisible = false; var marketplaceWebTablet; - // We persist clientOnly data in the .ini file, and reconsistitute it on restart. // To keep things consistent, we pickle the tablet data in Settings, and kill any existing such on restart and domain change. var persistenceKey = "io.highfidelity.lastDomainTablet";