mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 15:26:12 +00:00
16 lines
311 B
JavaScript
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();
|
|
}
|
|
}
|
|
}
|