Skip to content

Commit

Permalink
Merge branch 'master' of github.com:sandialabs/slycat
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsielicki committed Sep 30, 2015
2 parents c82fdeb + bd83ad4 commit f8382df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web-server/plugins/slycat-tracer-image/js/model.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,8 @@ define("Model", ["slycat-server-root", "slycat-dialog", "Movie", "slycat-bookmar
var self = this;
$.ajax({
type : "GET",
url : server_root + "models/" + self.id + "/arraysets/data-table/arrays/0/attributes/" + index + "/chunk?ranges=0," + self.metadata["row-count"],
//url : server_root + "models/" + self.id + "/arraysets/data-table/arrays/0/attributes/" + index + "/chunk?ranges=0," + self.metadata["row-count"],//this is the old way of doing it
url : server_root + "models/" + self.id + "/arraysets/data-table/data?hyperchunks=0/" + index + "/ranges=0:" + self.metadata["row-count"],
success: success_callback,
error: artifact_missing
});
Expand Down

0 comments on commit f8382df

Please sign in to comment.