Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

tagcanvas_include_js.html 388B

1234567891011121314
  1. <script type="text/javascript">
  2. window.onload = function() {
  3. try {
  4. TagCanvas.Start('{{ element_id }}_canvas', '{{ element_id }}_tags',{
  5. reverse: true,
  6. depth: 0.8,
  7. maxSpeed: 0.05
  8. });
  9. } catch(e) {
  10. // something went wrong, hide the canvas container
  11. document.getElementById('{{ element_id }}').style.display = 'none';
  12. }
  13. };
  14. </script>