Skip to content

Commit

Permalink
Rollup merge of rust-lang#64096 - GuillaumeGomez:theme-regex-fix, r=M…
Browse files Browse the repository at this point in the history
…ark-Simulacrum

Fix regex replacement in theme detection

Fixes rust-lang#64061.

This is sadly a lot of bad luck: after making the changes and re-build the docs, I just forgot to force reload the page. Hence having the old (working) version with two replacements instead of the failing regex. Sorry again about that...

cc @fenhl
r? @Mark-Simulacrum
  • Loading branch information
Centril committed Sep 3, 2019
2 parents ed13e27 + 991f436 commit 3e427d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustdoc/html/static/storage.js
Expand Up @@ -119,7 +119,7 @@ function switchTheme(styleElem, mainStyleElem, newTheme, saveTheme) {

function getSystemValue() {
var property = getComputedStyle(document.documentElement).getPropertyValue('content');
return property.replace(/\"\'/g, "");
return property.replace(/[\"\']/g, "");
}

switchTheme(currentTheme, mainTheme,
Expand Down

0 comments on commit 3e427d9

Please sign in to comment.