var frameworks = "bullframe,caiuss,kathamo,kube,lotus,milligram,min,motherplate,normalize,oh-my-css,pure,sanitize-10up,sanitize-zdroid,siimple,simple,skeleton-framework,skeleton-plus,skeleton,tacit,thao"; add_switcher(); function switch_css(css) { document.getElementsByTagName("link")[0].href = "vendor/" + css + ".min.css"; } function capitalize(s) { u = s.replace(/^(.)/, function(_, l){ return l.toUpperCase(); }); return u; } function inline_switcher() { switcher = document.getElementById("switcher"); frameworks_array = frameworks.split(","); select_open = '\n \n ' dropdown = dropdown + select_close; switcher.innerHTML = dropdown; } function add_switcher() { stylesheet = document.getElementsByTagName("link")[0]; if (stylesheet == undefined) { head = document.getElementsByTagName('head')[0]; link = document.createElement('link'); link.rel="stylesheet"; link.type="text/css"; link.href="vendor/bullframe.min.css"; head.appendChild(link); } var new_div = document.createElement("div"); new_div.innerHTML = '
 
\n '; document.body.insertBefore(new_div, document.body.firstChild); document.body.style.paddingLeft = "24px" inline_switcher(); }