olahol/melody-jsnes

gamelist can't find data

zhkuang opened this issue · 1 comments

function loadGames() {
    $.getJSON('/gamelist', function(data){
        var html = '';
        var len = data.games.length;
        for (var i = 0; i< len; i++) {
            html += '<option value="' + data.games[i] + '">' + data.games[i].replace(".nes","") + '</option>';
        }
        $('#current-game').append(html);
    });
}

data is null

Do you have any NES roms (*.nes files) in the same directory as the server?