File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,10 @@ export function findParentFrame(vm) {
52
52
53
53
export default {
54
54
install ( Vue ) {
55
- Vue . navigateBack = Vue . prototype . $navigateBack = function ( options , backstackEntry = null ) {
55
+ Vue . navigateBack = Vue . prototype . $navigateBack = function (
56
+ options ,
57
+ backstackEntry = null
58
+ ) {
56
59
const parentFrame = findParentFrame ( this )
57
60
const defaultOptions = {
58
61
frame : parentFrame ? parentFrame : 'default'
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export default {
20
20
21
21
// we only need call this for the "defaultPage" of the frame
22
22
// which is equivalent to testing if any page is "current" in the frame
23
- if ( frame && ( ! frame . $el . nativeView . currentPage ) ) {
23
+ if ( frame && ! frame . $el . nativeView . currentPage ) {
24
24
frame . notifyFirstPageMounted ( this )
25
25
}
26
26
You can’t perform that action at this time.
0 commit comments