creative-connections/aurelia-bodylight-plugin

View on GitHub
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
  }
}
}