graphonline/script/createByMatrixMain.js
2020-07-03 23:24:10 +03:00

16 lines
311 B
JavaScript
Executable File

/*
Main class for create by matrix page
*/
window.onload = function ()
{
if (document.getElementById('CreateByAdjacencyMatrix'))
{
document.getElementById('CreateByAdjacencyMatrix').onclick = function ()
{
window.location = "./?matrix=" + $( "#AdjacencyMatrixFieldPage" ).val();
}
}
}