Last active
December 14, 2015 19:19
-
-
Save benknight/5135874 to your computer and use it in GitHub Desktop.
Append Grapper to the bottom half of the window
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var grapper = document.createElement('iframe'); | |
grapper.id = 'grapper'; | |
grapper.src = 'http://dev16.706.yelpcorp.com:4773/'; | |
document.body.appendChild(grapper); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#grapper { | |
position: fixed; | |
z-index: 9999; | |
bottom: 0; | |
left: 0; | |
width: 100%; | |
height: 70%; | |
border: 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment