Skip to content

Commit

Permalink
chore(index): transform library in Aurelia plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-guilbault committed May 30, 2015
1 parent e4472ab commit 84c8c9c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export {MaterializeSelect} from './select';
export {MaterializeSideNav} from './side-nav';

export function configure(aurelia) {
aurelia.globalizeResources(
'./select',
'./side-nav'
);
}
2 changes: 1 addition & 1 deletion src/side-nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
@bindable('menuWidth')
@bindable('edge')
@bindable({ name: 'closeOnClick', defaultValue: true })
export class SideNav {
export class MaterializeSideNav {
constructor(element) {
this.element = element;
}
Expand Down

0 comments on commit 84c8c9c

Please sign in to comment.