Selaa lähdekoodia

change let and const to var to support older browsers

Onestay 7 vuotta sitten
vanhempi
commit
480a38d260
1 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
  1. 4 4
      public/js/home.js

+ 4 - 4
public/js/home.js

@@ -65,19 +65,19 @@ upload.prepareUpload = function(){
 	
 	// I think this fits best here because we need to check for a valid token before we can get the albums
 	if (upload.token) {
-		const select = document.querySelector('select');
+		var select = document.querySelector('select');
 		
 		axios.get('/api/albums', { headers: { token: upload.token }})
 		.then(function(res) {
-			let albums = res.data.albums;
+			var albums = res.data.albums;
 			
 			// if the user doesn't have any albums we don't really need to display
 			// an album selection
 			if (albums.length === 0) return;
 			
 			// loop through the albums and create an option for each album 
-			for (let i = 0; i < albums.length; i++) {
-				let opt = document.createElement('option');
+			for (var i = 0; i < albums.length; i++) {
+				var opt = document.createElement('option');
 				opt.value = albums[i].id;
 				opt.innerHTML = albums[i].name;
 				select.appendChild(opt);