mirror of
https://github.com/nhammer514/textfiles-politics.git
synced 2024-12-11 16:54:33 -05:00
15 lines
467 B
JavaScript
15 lines
467 B
JavaScript
$( 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/
|
|
|
|
}); |