css.js 287 Bytes
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);
	}
});