textfiles-politics/docs/network/web_session/scripts/main.js
2023-05-03 17:16:32 -04:00

29 lines
789 B
JavaScript

$(function() {
"use strict";
function e(e, n) {
for (var t = n.length, o = 0; t >= o; o++) {
var s = n[o].title;
if (s === e) return n[o]
}
return null
}
var n = "#cy",
network = networks[Object.keys(networks)[0]],
style = styles[0];
$(n).cytoscape({
layout: {
name: "preset",
padding: 10
},
boxSelectionEnabled: !0,
ready: function() {
window.cy = this,
cy.load(network.elements), console.log(network);
console.log(style);
var o = e("default", style);
null === o && (o = style), cy.style().fromJson(o.style).update()
}
})
});