Files
Hristo Deshev 9daa948887 Allow updates to application CSS rules.
Expose an `application.addCss` method and hide `application.cssSelectors`
from end-user typings. Update StyleScope's with new application selectors
on style application.

NOT updating existing controls/views unless reloaded, or forced (via a
change to className, etc).
2016-03-24 14:45:20 +02:00
..
2015-07-29 15:24:38 +03:00

Ani

// 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");
}