15 lines
325 B
JavaScript
15 lines
325 B
JavaScript
|
$(document).ready(function() {
|
||
|
if (!Raphael.svg) {
|
||
|
window.location = './notsupported.html';
|
||
|
}
|
||
|
|
||
|
// suppress select events
|
||
|
$(window).bind('selectstart', function(event) {
|
||
|
event.preventDefault();
|
||
|
});
|
||
|
|
||
|
// initialize visualization
|
||
|
Panel.init();
|
||
|
Controller.init();
|
||
|
});
|