Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Promise.all([
  2.     fetch('data.json').then(res => res.json()),
  3.     fetch('styles.json').then(res => res.json())
  4. ]).then(([{elements}, style]) => {
  5.     cytoscape({
  6.         container: document.getElementById('cy'),
  7.         elements,
  8.         style
  9.     });
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement