Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e735d5 commit d9e68a4Copy full SHA for d9e68a4
1 file changed
lib/matplotlib/backends/web_static/mpl.js
@@ -37,8 +37,6 @@ window.onload = function() {
37
}
38
39
ws.onmessage = function (evt) {
40
- console.log("message " + evt.data);
41
-
42
if (supports_binary) {
43
if (evt.data instanceof Blob) {
44
/* FIXME: We get "Resource interpreted as Image but
@@ -57,7 +55,6 @@ window.onload = function() {
57
55
58
56
} else {
59
if (evt.data.slice(0, 21) == "data:image/png;base64") {
60
- console.log("got image");
61
imageObj.src = evt.data;
62
return;
63
0 commit comments