reload imports when parsing a stylesheet

This commit is contained in:
cloudhead 2010-07-06 16:49:39 +02:00
parent 4bb4c97357
commit 69b1c050e1

View File

@ -1038,9 +1038,7 @@ if (typeof(window) !== 'undefined') {
if (path[0] !== '/' && paths.length > 0) {
path = paths[0] + path;
}
loadStyleSheet({ href: path, title: path }, function (root) {
callback(root);
});
loadStyleSheet({ href: path, title: path }, callback, true);
};
}