element-react-codish
Version:
Element UI for React
24 lines (18 loc) • 445 B
JavaScript
;
exports.reset = function (css) {
var style = document.createElement('style');
style.type = 'text/css';
if (style.styleSheet) {
style.styleSheet.cssText = css;
} else {
style.appendChild(document.createTextNode(css));
}
(document.head || document.getElementsByTagName('head')[0]).appendChild(style);
};
;
var _temp = function () {
if (typeof __REACT_HOT_LOADER__ === 'undefined') {
return;
}
}();
;