mirror of
https://github.com/BlackLight/Snort_AIPreproc.git
synced 2024-11-13 04:07:15 +01:00
Fixing some JavaScript stupidity
This commit is contained in:
parent
ee0719f239
commit
6c3e00bc8d
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ window.onload = function() {
|
|||
window.innerHeight- 50 : 50;
|
||||
}
|
||||
|
||||
req.open ( 'GET', 'http://localhost:7654/correlation_graph.json', true );
|
||||
req.open ( 'GET', 'http://' + window.location.host + '/correlation_graph.json', true );
|
||||
req.onreadystatechange = function() {
|
||||
if ( req.readyState == 4 && req.status == 200 )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue