textfiles-politics/docs/network/web_session/scripts/custom.js

15 lines
467 B
JavaScript
Raw Normal View History

2023-05-03 17:16:32 -04:00
$( document ).ready(function(){
// Custom Cytoscape.JS code goes here.
// Example: add linkouts to nodes that opens the "href" node attribute on click
// cy.on('tap', 'node', function(){
// try { // your browser may block popups
// window.open( this.data('href') );
// } catch(e){ // fall back on url change
// window.location.href = this.data('href');
// }
// });
// For more options, check out http://js.cytoscape.org/
});