Skip to content

Commit e5b6202

Browse files
dcarralshellscape
authored andcommitted
Do not show warnings @ overlay unless explicitly set (#881)
This change tweaks the feature behavior (implemented @ #790), so it matches the intended behavior (described @ #789). This PR would supersede survivejs/webpack-book#262.
1 parent a7fdb06 commit e5b6202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

client/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ var onSocketMsg = {
9494
"overlay": function(overlay) {
9595
if(typeof document !== "undefined") {
9696
if(typeof(overlay) === "boolean") {
97-
useWarningOverlay = overlay;
97+
useWarningOverlay = false;
9898
useErrorOverlay = overlay;
9999
} else if(overlay) {
100100
useWarningOverlay = overlay.warnings;

0 commit comments

Comments
 (0)