Skip to content

Commit

Permalink
Update anomalyVis.js
Browse files Browse the repository at this point in the history
  • Loading branch information
soobin99 committed May 19, 2024
1 parent a20f942 commit 708eca0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/js/anomalyVis.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function drawAnomalyVis(node) {

function readRawData(node) {
$.ajax({
url: '../static/data/date/' + node + '.csv',
url: 'static/data/date/' + node + '.csv',
dataType: 'text',
}).done(function (data) {
var rawAxis = [];
Expand Down Expand Up @@ -51,7 +51,7 @@ function readRawData(node) {

function readAnomalyData(rawAxis, rawData, node) {
$.ajax({
url: '../static/data/anomaly/col_' + node + '.csv',
url: 'static/data/anomaly/col_' + node + '.csv',
dataType: 'text',
}).done(function (data) {
var anomalyData = [];
Expand Down

0 comments on commit 708eca0

Please sign in to comment.