angular2-busy
angular2-busy copied to clipboard
Custom Angular element in config template
Hi, is there a way to specify an Angular element as the template? I'd like to use @angular2/material 's <md-progress> component, but currently it fails with a 'Not a known Angular element' error. I'd really like to have this feature, nice library!
The appropriate code snippet from the NgModule imports is this:
BusyModule.forRoot(new BusyConfig({
message: '',
template: `<md-progress>`
}))
Hi, any work around on this ?