Skip to content

Instantly share code, notes, and snippets.

@spangenberg
Created April 21, 2011 14:36
Show Gist options
  • Save spangenberg/934647 to your computer and use it in GitHub Desktop.
Save spangenberg/934647 to your computer and use it in GitHub Desktop.
Change fist stylesheets name from screen to canvas if the website is rendered in a iframe.
jQuery ->
if window is not window.top
link = $("link:first")
href = link.attr("href").replace /screen/, "canvas"
link.attr "href", href
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment