UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

18 lines (15 loc) 381 B
import { Component, ViewEncapsulation } from '@angular/core'; @Component({ selector: 'app-root', styleUrls: ['./app.component.css'], templateUrl: './app.component.html', encapsulation: ViewEncapsulation.None }) export class AppComponent { getWidth() : any { if (document.body.offsetWidth < 500) { return '90%'; } return 500; } }