We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 747bf5f commit 96b7440Copy full SHA for 96b7440
src/mobilebone.js
@@ -46,7 +46,7 @@
46
*
47
* @type string
48
**/
49
- Mobilebone.VERSION = "2.7.5";
+ Mobilebone.VERSION = "2.7.6";
50
51
/**
52
* Whether catch attribute of href from element with tag 'a'
@@ -501,7 +501,13 @@
501
}, 17);
502
503
// add on v2.7.5 improve back user experence
504
- store.lastShip = [pageInto, pageOut];
+ // add on v2.7.6
505
+ // only not back transiton store last ship
506
+ if (back == false) {
507
+ store.lastShip = [pageInto, pageOut];
508
+ } else {
509
+ store.lastShip = null;
510
+ }
511
}
512
};
513
0 commit comments