Open
Description
I use the :number wildcard to define my routie:
routie('question/:number', function (number) {
//some code
});
now if i go for example from my URL #question/7 to #question/9 and press the back button in my browser i go to #question/8, which should of course end up at #question/7 (because i skipped #8). Any way to fix this behavior?