Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 322 Bytes

File metadata and controls

14 lines (11 loc) · 322 Bytes

Use the frame in the following way:

To navigate to the starting page of the application

// put this in the bootstrap.js
var app = require("application");
var frameModule = require("ui/frame");

app.onLaunch = function(context) {
	var frame = new frameModule.Frame();
	frame.navigate("testPage");
}