Skip to content

Commit 6f278e3

Browse files
committed
browser: place %c marker after the space character
This way, in Firefox 31, the "main content" of the debug call will not have any extra whitespace on the left of it.
1 parent 7278fcc commit 6f278e3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

browser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function formatArgs() {
6464

6565
args[0] = (useColors ? '%c' : '')
6666
+ this.namespace
67-
+ (useColors ? '%c ' : ' ')
67+
+ (useColors ? ' %c' : ' ')
6868
+ args[0]
6969
+ (useColors ? '%c ' : ' ')
7070
+ '+' + exports.humanize(this.diff);

0 commit comments

Comments
 (0)