Every line of 'kendo window content' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
34 ngOnInit() { 35 this.$element = $($(this.element.nativeElement).find("div").eq(0)); 36 if (this.options.resize) { 37 var innerResize = this.options.resize; 38 this.options.resize = e => { 39 this.resize(e); 40 innerResize(e); 41 }; 42 } else { 43 this.options.resize = e => this.resize(e); 44 } 45 this.window = new kendo.ui.Window(this.$element, this.options); 46 this.init.emit(this.window); 47 }