Skip to content

Releases: craftedbygc/taxi

1.1.0

23 Sep 14:19
Compare
Choose a tag to compare

Thanks to encouragement from @reksaandhika, this version fixes #4 .

Taxi now starts loading media from the target page as soon as a link is clicked, instead of waiting for onEnter. This should increase percieved speed of your app 馃巿

I also added a new argument to taxi.preload allowing this behaviour to be opt-in when preloading a URL.

Finally, a link's href is auotmatically fetched when a mouseenter or focus event is fired, further adding to percieved speed gains.

1.0.4

10 Sep 11:48
Compare
Choose a tag to compare

prefetch now fails gracefully if trying to fetch a 404, and allows you to catch the error if you wish:

taxi.preload('/path/to/404')
    .then(() => console.log('success!'))
    .catch(err => console.warn(err))

1.0.1

30 Jul 20:25
Compare
Choose a tag to compare
  • Improved handling of popstate-blocking during a transition when allowInterruption is set to false.
  • When a transition is blocked due to one being active already, Taxi now uses console.warn instead of throwing an Error. This is to work better with bugsnag and other error monitoring programs
  • Numerous docs improvements

1.0.0

27 Jul 21:58
Compare
Choose a tag to compare

Public release 馃帀