Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var node = document.createElement("button");
  2.             var svg = document.createElementNS("http://www.w3.org/2000/svg", "svg");
  3.             var path = document.createElementNS("http://www.w3.org/2000/svg", "path");
  4.             node.classList.add('button-toolbar');
  5.             node.id = "vivaldiToggleSidebar";
  6.             node.setAttribute("title", "Panel Toggle");
  7.             node.setAttribute("tabindex", "-1");
  8.             svg.setAttributeNS(null, "width", "4");
  9.             svg.setAttributeNS(null, "height", "16");
  10.             svg.setAttributeNS(null, "viewBox", "0 0 4 16");
  11.             path.style = "d: path('M2 4c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm0 6c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm0 6c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z')";  
  12.             bookmarkbar.appendChild(node);
  13.             node.appendChild(svg);
  14.             svg.appendChild(path);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement