Skip to content

Commit

Permalink
fixed the path to images #156
Browse files Browse the repository at this point in the history
  • Loading branch information
TatianaBurek committed May 22, 2024
1 parent 56e12f5 commit 2d7be9d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions webapp_scorecard/index.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
var data_url ;
function changePlotURL(src){
var name = src.split(/_(\d)*\.png/)[0];
var src_new= data_url + name +'/' + src;
var src_new= data_url +'/' + src;
var pos = {my: "center bottom",
at: "center bottom",
of: window};
Expand Down Expand Up @@ -78,6 +77,9 @@
"Couldn't load this tab. We'll try to fix this as soon as possible. " +
"If this wouldn't be a demo." );
});
},
beforeActivate: function( event, ui ) {
$(".ui-dialog-content").dialog("close");
}
}).addClass( "ui-tabs-vertical ui-helper-clearfix" );
$( "#tabs1 li" ).removeClass( "ui-corner-top" ).addClass( "ui-corner-left" );
Expand Down

0 comments on commit 2d7be9d

Please sign in to comment.