Skip to content

Commit

Permalink
Merge pull request #8107 from Darkneon/fix-auto-reload-with-prefix
Browse files Browse the repository at this point in the history
[FIX] Autoupdate of CSS does not work when using a prefix
  • Loading branch information
rodrigok authored Dec 5, 2017
2 parents c30946b + 131fba4 commit 226e720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/autoupdate/autoupdate_client.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ Autoupdate._retrySubscription = function () {
newLink.setAttribute("rel", "stylesheet");
newLink.setAttribute("type", "text/css");
newLink.setAttribute("class", "__meteor-css__");
newLink.setAttribute("href", Meteor._relativeToSiteRootUrl(css.url));
newLink.setAttribute("href", css.url);
attachStylesheetLink(newLink);
});
} else {
Expand Down

0 comments on commit 226e720

Please sign in to comment.