Skip to content

Commit f098331

Browse files
authored
Merge pull request #388 from ForsakenHarmony/patch-1
Fix formatting bug
2 parents a16cf42 + 78e31a8 commit f098331

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

browser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ function formatArgs(args) {
9595
// figure out the correct index to insert the CSS into
9696
var index = 0;
9797
var lastC = 0;
98-
args[0].replace(/%[a-z%]/g, function(match) {
98+
args[0].replace(/%[a-zA-Z%]/g, function(match) {
9999
if ('%%' === match) return;
100100
index++;
101101
if ('%c' === match) {

0 commit comments

Comments
 (0)