mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
Fix perf-tests paths. Not tested
This commit is contained in:
@@ -30,7 +30,7 @@ export function createPage() {
|
||||
|
||||
listView.on(listViewModule.knownEvents.itemTap, (args: listViewModule.ItemEventData) => {
|
||||
var navigationEntry = {
|
||||
moduleName: "app/NavigationTest/details-page",
|
||||
moduleName: "NavigationTest/details-page",
|
||||
context: itemsSource[args.index]
|
||||
};
|
||||
page.frame.navigate(navigationEntry);
|
||||
|
||||
@@ -22,7 +22,7 @@ export function createPage() {
|
||||
var navigateButton = new buttonModule.Button();
|
||||
navigateButton.text = "->";
|
||||
navigateButton.on(buttonModule.knownEvents.tap, () => {
|
||||
page.frame.navigate("app/NavigationTest/page2");
|
||||
page.frame.navigate("NavigationTest/page2");
|
||||
});
|
||||
stackLayout.addChild(navigateButton);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user