css.js 287 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 define({ load: function(name, localRequire, load, config) { var head = document.getElementsByTagName('head')[0]; var link = document.createElement('link'); link.href = localRequire.toUrl(name); link.rel = 'stylesheet'; link.type = 'text/css'; head.appendChild(link); } });