loadCss.js 387 B

1234567891011121314151617
  1. var noop = require('./noop');
  2. exports = function(src, cb) {
  3. cb = cb || noop;
  4. var link = document.createElement('link');
  5. link.rel = 'stylesheet';
  6. link.type = 'text/css';
  7. link.onerror = function() {
  8. cb(false);
  9. };
  10. link.onload = function() {
  11. cb(true);
  12. };
  13. link.href = src;
  14. document.head.appendChild(link);
  15. };
  16. module.exports = exports;