UNPKG

periscope-ui

Version:

Perscope default set of widget/dashboard implementations

12 lines (10 loc) 314 B
import {bindable} from 'aurelia-framework'; import {GridMenu} from './grid-menu'; export class WidgetMenu { @bindable widget = {}; content; widgetChanged(oldVal, newVal) { if (Object.getPrototypeOf(this.widget.constructor).name==="Grid") this.content = new GridMenu(this.widget); } }