graphonline/script/createByMatrixMain.js
2017-04-15 01:34:36 +03:00

16 lines
311 B
JavaScript

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