Disable webcam stream when control tab is not in focus.

Fixes #316
This commit is contained in:
Gina Häußge 2013-11-24 16:55:14 +01:00
parent 5b8126ae17
commit 1b4a7c7896

View file

@ -51,6 +51,17 @@ $(function() {
terminalViewModel.updateOutput(); terminalViewModel.updateOutput();
}); });
$('#tabs a[data-toggle="tab"]').on('show', function (e) {
var current = e.target;
var previous = e.relatedTarget;
if (current.hash == "#control") {
$("#webcam_image").attr("src", CONFIG_WEBCAM_STREAM + "?" + new Date().getTime());
} else if (previous.hash == "#control") {
$("#webcam_image").attr("src", "#");
}
});
//~~ Gcode upload //~~ Gcode upload
function gcode_upload_done(e, data) { function gcode_upload_done(e, data) {