|
@@ -407,7 +407,7 @@ $(document).ready(function() {
|
|
|
if(thisID == 'playButton'){
|
|
|
if (activeReloadTimer()) {
|
|
|
$(this).attr('id','pauseButton');
|
|
|
- $(this).find('i').removeClass('fa-play').addClass('fa-pause');
|
|
|
+ $(this).find('i').removeClass('fa-sync-alt').addClass('fa-pause');
|
|
|
$('#reloadIntervalSelect').prop('disabled',true);
|
|
|
$('#viewEntry').prop('disabled',true);
|
|
|
|
|
@@ -417,7 +417,7 @@ $(document).ready(function() {
|
|
|
else if(thisID == 'pauseButton'){
|
|
|
deactiveReloadTimer();
|
|
|
$(this).attr('id','playButton');
|
|
|
- $(this).find('i').removeClass('fa-pause').addClass('fa-play');
|
|
|
+ $(this).find('i').removeClass('fa-pause').addClass('fa-sync-alt');
|
|
|
$('#reloadIntervalSelect').prop('disabled',false);
|
|
|
$('#viewEntry').prop('disabled',false);
|
|
|
|