Skip to content

Commit

Permalink
fix(attach-focus): AttachFocus must be the default export fix #358
Browse files Browse the repository at this point in the history
  • Loading branch information
StrahilKazlachev committed Aug 21, 2018
1 parent 7cc701e commit fb5e829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resources/attach-focus.ts
Expand Up @@ -3,7 +3,7 @@ import { customAttribute, ComponentAttached } from 'aurelia-templating';
import { DOM } from 'aurelia-pal'; import { DOM } from 'aurelia-pal';


@customAttribute('attach-focus', bindingMode.oneTime) @customAttribute('attach-focus', bindingMode.oneTime)
export class AttachFocus implements ComponentAttached { export default class AttachFocus implements ComponentAttached {
public value: boolean | string; public value: boolean | string;


/** /**
Expand Down

0 comments on commit fb5e829

Please sign in to comment.