Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove some logging
  • Loading branch information
mdboom committed Jan 4, 2013
commit d9e68a43b2a79cd46d156116194b8df3eea72ef1
3 changes: 0 additions & 3 deletions lib/matplotlib/backends/web_static/mpl.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ window.onload = function() {
}

ws.onmessage = function (evt) {
console.log("message " + evt.data);

if (supports_binary) {
if (evt.data instanceof Blob) {
/* FIXME: We get "Resource interpreted as Image but
Expand All @@ -57,7 +55,6 @@ window.onload = function() {
}
} else {
if (evt.data.slice(0, 21) == "data:image/png;base64") {
console.log("got image");
imageObj.src = evt.data;
return;
}
Expand Down