Skip to content

Instantly share code, notes, and snippets.

@stnight
Created March 18, 2017 08:56
Show Gist options
  • Save stnight/9ec320216f489f84ee087e41620070ad to your computer and use it in GitHub Desktop.
Save stnight/9ec320216f489f84ee087e41620070ad to your computer and use it in GitHub Desktop.
var page = e.detail.page;
$$(page.container).find("script").each(function(el){
if ($(this).attr('src')){
jQuery.getScript($(this).attr('src'));
} else {
eval($(this).text());
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment