creative-connections/aurelia-bodylight-plugin

View on GitHub
src/elements/base.js

Summary

Maintainability
A
0 mins
Test Coverage
import {bindable} from 'aurelia-templating';

export class Base {
  @bindable href;
  attached() {
    window.bdlBaseHref = this.href; //sets global variable
  }
}