Releases: tinesoft/ngx-wow
Releases · tinesoft/ngx-wow
v2.0.1
v2.0.0
Bug Fixes
- core: item reveal events not fired if initialising WowService with no arguments (ec56d5e), closes #19
Features
- core: update to
Angular v6.x.x
and higher (ccdab37)
BREAKING CHANGES
- core:
forRoot()
onNgwWowModule
has been removed as no longer necessary
Before:
import {NgwWowModule} from 'ngx-wow';
@NgModule({
declarations: [AppComponent, ...],
imports: [NgwWowModule.forRoot()],
bootstrap: [AppComponent]
})
export class AppModule {
}
After:
import {NgwWowModule} from 'ngx-wow';
@NgModule({
declarations: [AppComponent, ...],
imports: [NgwWowModule],
bootstrap: [AppComponent]
})
export class AppModule {
}