Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. function scrollOpenTimed() {
  2. var openTimer = setTimeout(function(){ scrollOpen(); }, 3000);
  3. }
  4.  
  5.  
  6.  
  7. function a() {
  8. var _ouibounce = ouibounce(document.getElementById('modal'), {
  9. aggressive: true,
  10. timer: 0,
  11. callback: function() {
  12. console.log('ouibounce fired!');
  13. // cancel the openTimer
  14. }
  15. });
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement