mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
13 lines
367 B
JavaScript
13 lines
367 B
JavaScript
WebApp = {
|
|
|
|
_isCssLoaded: function () {
|
|
return _.find(document.styleSheets, function (sheet) {
|
|
if (sheet.cssText && !sheet.cssRules) // IE8
|
|
return !sheet.cssText.match(/meteor-css-not-found-error/);
|
|
return !_.find(sheet.cssRules, function (rule) {
|
|
return rule.selectorText === '.meteor-css-not-found-error';
|
|
});
|
|
});
|
|
}
|
|
};
|