Skip to content

Commit

Permalink
Test Fix UC browser add bottom error logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Rdjarbeng committed Mar 4, 2022
1 parent 613b486 commit eaa3723
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,22 +250,22 @@ let err =document.getElementById('errors');
try{
waitForAnimation(myclock, { dayNumber, hourNumber, minNumber, secNumber }, animatedCountDuration);
}catch(e){
err.innerHTML+=e;
err.innerHTML+= e+' WaitforAnimation.js';
};

try{
autoLight();
}catch(e){
notifyUser(e+' AutoLight.js')
err.innerHTML+=e+' AutoLight.js'
};

try{
addEventListeners();
}catch(e){
notifyUser(e+' addEventListeners.js')
err.innerHTML+=e+' addEventListeners.js';
};

// notifyUser('all clear -App.js')
err.innerHTML+= 'all clear -App.js'



Expand Down

0 comments on commit eaa3723

Please sign in to comment.