Skip to content

Commit

Permalink
use storage bucket files
Browse files Browse the repository at this point in the history
  • Loading branch information
notwaldorf committed Oct 31, 2018
1 parent 9630090 commit 049f1e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ function updateEverything() {
function loadOtherPerfFile() {
document.getElementById('loading').hidden = false;
document.getElementById('output').hidden = true;
parser.loadURL('./files/performance_big.json').then(updateEverything);
parser.loadURL('https://storage.googleapis.com/nips-workshop-visualization/files/performance_big.json').then(updateEverything);
}
function loadOtherDuoFile() {
document.getElementById('loading').hidden = false;
document.getElementById('output').hidden = true;
parser.loadURL('./files/duo_big.json').then(updateEverything);
parser.loadURL('https://storage.googleapis.com/nips-workshop-visualization/files/bach_duo.json').then(updateEverything);
}
function loadFile(e, callback) {
document.getElementById('loading').hidden = false;
Expand Down

0 comments on commit 049f1e3

Please sign in to comment.