You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
465 B
18 lines
465 B
(function (window, bs, undefined) { |
|
|
|
var styleElem = bs.addDomNode({ |
|
placement: "head", |
|
attrs: { |
|
"type": "text/css", |
|
id: "__bs_overlay-grid-styles__" |
|
}, |
|
tagName: "style" |
|
}); |
|
|
|
bs.socket.on("ui:remote-debug:css-overlay-grid", function (data) { |
|
styleElem.innerHTML = data.innerHTML; |
|
}); |
|
|
|
bs.socket.emit("ui:remote-debug:css-overlay-grid:ready"); |
|
|
|
}(window, window.___browserSync___)); |