Releases: jylauril/jquery-runner
Releases · jylauril/jquery-runner
Small improvements release
Bug fix release
- Another jQuery noConflict related fix. Hopefully the last.
Bug fix release
- Fixed a bug when running jQuery in noConflict mode.
v2.3.0 - Improvements and fixes
- Runner now utilizes requestAnimationFrame if applicable and falls back to setTimeout
- Fixed a small bug with dependency checks
- Removed ability to tweak the runner interval due to requestAnimationFrame change
v2.2.0 - Feature improvements and fixes
- Fixed a couple of small underlying bugs
- The first lap-time value now takes under consideration if the startAt time was something else than 0
- Lap-time now returns negative value if we are counting down
v2.1.3 - Yet another bug fix release
- I make a lot of bugs apparently
- Runner lap wasn't returning the correct lap time, it's fixed now, I swear!
v2.1.2 - Bug fix release
- Fixed another woopsie.
v2.1.1 - Bug fix release
- Fixed a couple of woopsies.
v2.1.0 - Changes to the API and bug fixes
- The custom format function no longer gets the inbuilt formatter as a second parameter. You can access the runner's inbuilt formatter through
$().runner.format
. - The custom format function now gets the
settings
object as second parameter, which has themilliseconds
-property that was given as 3rd parameter in the old version. - Added a way to stop the runner when calling
reset
method with a boolean true parameter. - Runner now fires a
runnerFinish
event after it reaches thestopAt
value. - We now also fire a
runnerReset
event after thereset
method is called. - Streamlined the other events to be more consistent.
runnerStarted
is nowrunnerStart
.runnerStopped
is nowrunnerStop
.