Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. $('body').idle({
  2. onIdle: function(){
  3. $("#workingState").html('<?=displayInLanguage("<p>Stav: <strong>neaktívny, obsah uložený.</strong></p>", "<p>Status: <strong>inactive, content saved.</strong></p>")?>');
  4.  
  5. if( $('#show_add_actuality').hasClass('d-block') ){
  6. saveForm('actualityForm_sk', "autoSaveScript");
  7. saveForm('actualityForm_en', "autoSaveScript");
  8. }
  9. },
  10. onActive: function(){
  11. $("#workingState").html('<?=displayInLanguage("<p>Stav: <strong>aktívny</strong></p>", "<p>Status: <strong>active</strong></p>")?>');
  12. },
  13. idle: 2000
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement