Files
meteor/packages/webapp/webapp_client.js
2013-12-17 12:12:20 -08:00

13 lines
349 B
JavaScript

WebApp = {
_isCssLoaded: function () {
return _.find(document.styleSheets, function (sheet) {
if (sheet.cssText && !sheet.cssRules) // IE8
return sheet.cssText.match(/_meteor_detect_css/);
return _.find(sheet.cssRules, function (rule) {
return rule.selectorText === '._meteor_detect_css';
});
});
}
};