Files
2015-07-19 18:02:54 -05:00

18 lines
335 B
TypeScript

import {Directive, ElementRef} from 'angular2/angular2';
@Directive({
selector: '[md-ripple]',
host: {
'(click)': 'elementClicked($event)'
}
})
export class MaterialRipple {
constructor(elementRef: ElementRef) {
this.elementRef = elementRef;
console.log('Ripple', elementRef);
}
elementClicked(event) {
}
}