Skip to content

Commit

Permalink
Merge pull request #7 from dhruv282/master
Browse files Browse the repository at this point in the history
Histogram dimming fix
  • Loading branch information
a-mabe authored Aug 13, 2019
2 parents 1e4fdd6 + bf9580b commit 53e057b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion public/scripts/timeline.js
Original file line number Diff line number Diff line change
Expand Up @@ -766,7 +766,7 @@ function startEventNotification(){
notificationSrc.close();
}
}
else if(streamedObj.data === "statssent"){
else if(streamedObj.data === "statssent" || streamedObj.data === "histoDataSent"){
$('#serverStreamingModal .logsContent').empty();
setProgressBar(2);
// for avoiding the refresh issue... automatically refreshing the page when the results are available
Expand Down
1 change: 1 addition & 0 deletions tmvis.js
Original file line number Diff line number Diff line change
Expand Up @@ -1224,6 +1224,7 @@ TimeMap.prototype.getDatesForHistogram = function (callback,response,curCookieCl

//var cacheFile = new SimhashCacheFile(this.primesource+"_"+this.collectionidentifier+"_"+this.originalURI,isDebugMode)
//cacheFile.writeThumbSumJSONOPContentToFile(mementoJObjArr);
constructSSE("histoDataSent",curCookieClientId);
response.write(JSON.stringify(mementoJObjArr));
response.end();
callback('');
Expand Down

0 comments on commit 53e057b

Please sign in to comment.