Update script file

Include reset camera event
This commit is contained in:
Diego Inácio
2020-02-12 15:09:40 -03:00
parent a22745a21c
commit 82812c6e67

View File

@ -64,3 +64,14 @@ $(function() {
return false; return false;
}); });
}); });
$(function() {
// reset camera
$('a#reset-cam').bind('click', function() {
$.getJSON('/reset_camera',
function(data) {
// do nothing
});
return false;
});
});