creative-connections/Bodylight.js-Components

View on GitHub
src_aurelia-bodylight-plugin/src/elements/device.js

Summary

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

export class Device {
@bindable href;
bind() {
  if (this.href) {
    //register
  }
}
}