mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 12:57:42 +08:00
12 lines
353 B
TypeScript
12 lines
353 B
TypeScript
import frame = require("ui/frame");
|
|
import observable = require("data/observable");
|
|
|
|
declare function __startCPUProfiler(name: string);
|
|
|
|
export function navigate(args: observable.EventData) {
|
|
var tag = "" + args.object.get("tag");
|
|
__startCPUProfiler("xml-performance-" + tag);
|
|
frame.topmost().navigate({
|
|
moduleName: tag,
|
|
});
|
|
} |