Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
itajenglish committed Feb 27, 2017
1 parent cc53786 commit 672ff78
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions public/scripts/userprofile.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
$(document).ready(function() {
let song;
var searchBox = $(".musicSearch");
var searchButton = $('#searchBtn');
let searchBox = $(".musicSearch");
let searchButton = $('#searchBtn');

//Gets songs from itunes matching song name passed in
const sendData = () => {
Expand Down Expand Up @@ -53,7 +53,7 @@ $(document).ready(function() {

appendDom(Title,Artist,Img,Album,Counter);

$('#song-num'+Counter).on('click', () => {
$('#song-num' + Counter).on('click', () => {
const djID = $('#djNum').text();
const songData = {
'djID': djID,
Expand Down

0 comments on commit 672ff78

Please sign in to comment.