From 04409603d56f844cee65ce04c39e8a70b27f0dc0 Mon Sep 17 00:00:00 2001 From: samreid Date: Tue, 27 Dec 2016 15:49:40 -0700 Subject: [PATCH] Removed unused IDs, see https://github.com/phetsims/joist/issues/392 --- js/splash.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/splash.js b/js/splash.js index 2e6075be..540d0cb5 100644 --- a/js/splash.js +++ b/js/splash.js @@ -56,7 +56,6 @@ // Create the splash image, which is an SVG logo var splashImage = document.createElement( 'img' ); splashImage.style.display = 'block'; - splashImage.setAttribute( 'id', 'splash' ); // Closure which binds the values to positionDiv, which can be used as a listener reference. var adjustPosition = function() { @@ -83,13 +82,11 @@ // Create the progress bar var progressBarDiv = document.createElement( 'div' ); - progressBarDiv.setAttribute( 'id', 'progressBar' ); progressBarDiv.setAttribute( 'style', 'width:273px;height:10px' ); progressBarDiv.style.display = 'block'; var svg = document.createElementNS( XML_NAMESPACE, 'svg' ); var progressBarBackground = document.createElementNS( XML_NAMESPACE, 'rect' ); - progressBarBackground.setAttribute( 'id', 'progressBarBackground' ); progressBarBackground.setAttribute( 'x', '0' ); progressBarBackground.setAttribute( 'y', PROGRESS_BAR_Y ); progressBarBackground.setAttribute( 'width', '273' );