Merge pull request #15 from zzottel/master
Added pausing of automatic stream reloads using Ctrl-Space
This commit is contained in:
commit
f3c91edd95
24
js/main.js
24
js/main.js
|
@ -16,12 +16,12 @@
|
||||||
document.getElementById(theID).style.display = "none"
|
document.getElementById(theID).style.display = "none"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
var src = null;
|
var src = null;
|
||||||
var prev = null;
|
var prev = null;
|
||||||
var livetime = null;
|
var livetime = null;
|
||||||
var msie = false;
|
var msie = false;
|
||||||
var stopped = false;
|
var stopped = false;
|
||||||
|
var totStopped = false;
|
||||||
var timer = null;
|
var timer = null;
|
||||||
var pr = 0;
|
var pr = 0;
|
||||||
var liking = 0;
|
var liking = 0;
|
||||||
|
@ -148,26 +148,26 @@
|
||||||
|
|
||||||
NavUpdate();
|
NavUpdate();
|
||||||
// Allow folks to stop the ajax page updates with the pause/break key
|
// Allow folks to stop the ajax page updates with the pause/break key
|
||||||
$(document).keypress(function(event) {
|
$(document).keydown(function(event) {
|
||||||
if(event.keyCode == '19') {
|
if(event.keyCode == '19' || (event.ctrlKey && event.which == '32')) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
if(stopped == false) {
|
if(stopped == false) {
|
||||||
stopped = true;
|
stopped = true;
|
||||||
|
if (event.ctrlKey) {
|
||||||
|
totStopped = true;
|
||||||
|
}
|
||||||
$('#pause').html('<img src="images/pause.gif" alt="pause" style="border: 1px solid black;" />');
|
$('#pause').html('<img src="images/pause.gif" alt="pause" style="border: 1px solid black;" />');
|
||||||
|
} else {
|
||||||
|
stopped = false;
|
||||||
|
totStopped = false;
|
||||||
|
$('#pause').html('');
|
||||||
}
|
}
|
||||||
else {
|
} else {
|
||||||
|
if (!totStopped) {
|
||||||
stopped = false;
|
stopped = false;
|
||||||
$('#pause').html('');
|
$('#pause').html('');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
|
||||||
// any key to resume
|
|
||||||
if(stopped == true) {
|
|
||||||
stopped = false;
|
|
||||||
$('#pause').html('');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue