IllusionaryOne

Example Global

Apr 8th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function() {
  2.     var globalCounter = 0;
  3.  
  4.     function updateCounter() {
  5.         globalCounter++;
  6.     }
  7.  
  8.     $.bind('initReady', function() {
  9.         globalCounter = $.inidb.get('sometable', 'counter');
  10.     }
  11. })();
Advertisement
Add Comment
Please, Sign In to add comment