Skip to content

Instantly share code, notes, and snippets.

@jimkang
Created January 8, 2018 02:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimkang/3de4ed16ae4bb85d116330856d6d8c7b to your computer and use it in GitHub Desktop.
Save jimkang/3de4ed16ae4bb85d116330856d6d8c7b to your computer and use it in GitHub Desktop.
Set svg size to window size
var width = +window.innerWidth;
var height = +window.innerHeight;
svg.attr('width', width);
svg.attr('height', height);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment