Skip to content

Commit

Permalink
Removed unused IDs, see #392
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Dec 27, 2016
1 parent 18f25bc commit 0440960
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions js/splash.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand All @@ -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' );
Expand Down

0 comments on commit 0440960

Please sign in to comment.