Skip to content

Instantly share code, notes, and snippets.

@pichsenmeister
Created May 6, 2014 15:39
Show Gist options
  • Save pichsenmeister/2cb8b9356bb5f994320d to your computer and use it in GitHub Desktop.
Save pichsenmeister/2cb8b9356bb5f994320d to your computer and use it in GitHub Desktop.
(function() {
var body = document.getElementsByTagName('body')[0];
var protocol = 'http';
if(window.location.protocol == 'https') {
protocol = 'https';
}
var url = protocol+'://localhost/oratio/js/widget/stmt_include.js';
var s = document.createElement('script');
s.setAttribute('type', 'text/javascript');
s.setAttribute('src', url);
body.appendChild(s);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment