Skip to content
This repository was archived by the owner on Apr 16, 2019. It is now read-only.

Commit e00c944

Browse files
author
Ian Maffett
committed
Fix back button not working
1 parent 21bc104 commit e00c944

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

build/appframework.ui.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! intel-appframework - v3.0.0 - 2015-03-26 */
1+
/*! intel-appframework - v3.0.0 - 2015-03-29 */
22

33
/**
44
* af.shim.js
@@ -1422,9 +1422,9 @@ window.af=window.jq=jQuery;
14221422
}
14231423
});
14241424

1425-
$(document).on("click", ".backButton, [data-back]", function() {
1425+
$(document).on("click", ".backButton, [data-back]", function() {
14261426
if(that.useInternalRouting)
1427-
that.goBack.bind(that);
1427+
that.goBack(that);
14281428
});
14291429
//Check for includes
14301430

build/appframework.ui.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/af.ui.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1110,9 +1110,9 @@
11101110
}
11111111
});
11121112

1113-
$(document).on("click", ".backButton, [data-back]", function() {
1113+
$(document).on("click", ".backButton, [data-back]", function() {
11141114
if(that.useInternalRouting)
1115-
that.goBack.bind(that)();
1115+
that.goBack(that);
11161116
});
11171117
//Check for includes
11181118

0 commit comments

Comments
 (0)