This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(global){ | |
| var $ = global.jQuery || global, | |
| D = Date, | |
| now = D.now || function() { | |
| return (new D).getTime(); | |
| }; | |
| // if once is true, fn will be executed only once if called more then one times during the time in delay. | |
| // if once is not defined or false, fn will be executed periodically, period is delay. |