fixing start-stop-class
This commit is contained in:
parent
84a7d6fea2
commit
80201f22ae
|
@ -224,16 +224,16 @@ function init() {
|
||||||
function startPlay() {
|
function startPlay() {
|
||||||
if (!interval) {
|
if (!interval) {
|
||||||
interval = setInterval(update, frameDuration);
|
interval = setInterval(update, frameDuration);
|
||||||
$('#play').removeClass('pause');
|
|
||||||
}
|
}
|
||||||
|
$('#play').removeClass('pause');
|
||||||
}
|
}
|
||||||
|
|
||||||
function stopPlay() {
|
function stopPlay() {
|
||||||
if (interval) {
|
if (interval) {
|
||||||
clearInterval(interval);
|
clearInterval(interval);
|
||||||
interval = false;
|
interval = false;
|
||||||
$('#play').addClass('pause');
|
|
||||||
}
|
}
|
||||||
|
$('#play').addClass('pause');
|
||||||
}
|
}
|
||||||
|
|
||||||
function togglePlay() {
|
function togglePlay() {
|
||||||
|
|
Loading…
Reference in New Issue