Go to file
2018-10-12 07:03:20 +03:00
bower.json NPM, Bower - prepare for 1.1.0 release. 2016-01-20 21:03:52 +03:00
HackTimer.js Update source without console.log calls. 2017-05-28 17:03:53 +02:00
HackTimer.min.js Add missing ; before return statement. Disappeared in commit SHA1: a0342d12ff 2016-10-10 19:09:21 +02:00
HackTimer.silent.min.js Add missing ; before return statement. Disappeared in commit SHA1: a0342d12ff 2016-10-10 19:09:21 +02:00
HackTimerWorker.js Checking fake id in list before removing (clearTimeout, clearInterval) in worker. Removing fake id from list after setTimeout callback was called in worker. Minified version. 2015-07-10 21:08:01 +05:00
HackTimerWorker.min.js Checking fake id in list before removing (clearTimeout, clearInterval) in worker. Removing fake id from list after setTimeout callback was called in worker. Minified version. 2015-07-10 21:08:01 +05:00
LICENSE Added MIT license 2015-09-01 11:08:14 +03:00
package.json Updated version. 2017-05-28 17:04:20 +02:00
README.md Merge branch 'master' of https://github.com/ctubio/HackTimer_fork into ctubio-master 2018-10-12 07:02:44 +03:00

HackTimer

Avoid timers throttling by browser when tab is inactive

Usage:

Place script reference to HackTimer.js (or HackTimer.min.js) before any other JavaScript. This includes library's such as jQuery as otherwise timed events such as fadeOut and fadeIn will break.

NPM

Command: npm install hacktimer

Latest version is 1.1.0

Registry URL: https://www.myget.org/F/hack-timer/npm

Bower

Command: bower install hacktimer

Latest version is 1.1.0

Registry: https://www.myget.org/F/hack-timer/bower/

You can specify bower registry in file .bowerrc in your working directory

{
  "registry": {
      "search": [
          "https://www.myget.org/F/hack-timer/bower/",
          "https://bower.herokuapp.com"
      ]
  }
}