We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4161ada commit ebfd463Copy full SHA for ebfd463
src/nativescript-angular/renderer.ts
@@ -20,7 +20,6 @@ export { rendererTraceCategory } from "./view-util";
20
export class NativeScriptRootRenderer implements RootRenderer {
21
private _rootView: View = null;
22
constructor(@Optional() @Inject(APP_ROOT_VIEW) rootView: View) {
23
- console.log('root view: ' + rootView);
24
this._rootView = rootView;
25
}
26
@@ -71,8 +70,7 @@ export class NativeScriptRenderer extends Renderer {
71
70
72
73
selectRootElement(selector: string): util.NgView {
74
- console.log('selectRootElement: ' + selector);
75
- util.traceLog('ROOT');
+ util.traceLog('selectRootElement: ' + selector);
76
const rootView = <util.NgView><any>this.rootRenderer.rootView;
77
rootView.nodeName = 'ROOT';
78
return rootView;
0 commit comments