Skip to content

Instantly share code, notes, and snippets.

View rzerdik's full-sized avatar
💭
Happy, happy!

Robert Žerdík rzerdik

💭
Happy, happy!
View GitHub Profile
//Room
function addGlobalStyle(css){
var head, style;
head = document.getElementsByTagName('head')[0];
if(!head){
return;
}
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
//Room
function addGlobalStyle(css){
var head, style;
head = document.getElementsByTagName('head')[0];
if(!head){
return;
}
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;