@@ -25,11 +25,11 @@ This is a simple library for [Angular][angular], implemented in the [Angular Pac
2525import { MasonryModule } from ' @thisissoon/angular-masonry' ;
2626
2727const masonryProviders = [
28- { provide: Masonry , useFactory : () => window [' Masonry' ] }
28+ { provide: Masonry , useFactory : () => window [' Masonry' ] },
2929];
3030
3131@NgModule ({
32- imports: [MasonryModule .forRoot (masonryProviders )]
32+ imports: [MasonryModule .forRoot (masonryProviders )],
3333})
3434export class AppModule {}
3535```
@@ -55,8 +55,8 @@ import { MasonryModule } from '@thisissoon/angular-masonry';
5555 imports: [
5656 // no need to provide window['Masonry'] here as
5757 // a mock implemention is provided by default
58- MasonryModule .forRoot ()
59- ]
58+ MasonryModule .forRoot (),
59+ ],
6060})
6161export class AppServerModule {}
6262```
@@ -82,7 +82,7 @@ export class AppComponent implements AfterViewInit, OnDestroy {
8282 itemSelector: ' .card' ,
8383 columnWidth: ' .card' ,
8484 gutter: 20 ,
85- fitWidth: true
85+ fitWidth: true ,
8686 };
8787 this .masonryInstance = new this .masonry (this .grid .nativeElement , options );
8888 }
@@ -164,8 +164,8 @@ Run `npm run release` to create a new release. This will use [Standard Version][
164164
165165To get more help on the Angular CLI use ` ng help ` or go check out the [ Angular CLI README] [ angular-cli-readme ] .
166166
167- [ travis ] : https://travis-ci.org /thisissoon/angular-masonry
168- [ travis -badge] : https://travis-ci.org/ thisissoon/angular-masonry.svg?branch=master
167+ [ circle ] : https://circleci.com/gh /thisissoon/angular-masonry
168+ [ circle -badge] : https://circleci.com/gh/ thisissoon/angular-masonry.svg?style=shield
169169[ coveralls ] : https://coveralls.io/github/thisissoon/angular-masonry?branch=master
170170[ coveralls-badge ] : https://coveralls.io/repos/github/thisissoon/angular-masonry/badge.svg?branch=master
171171[ commitizen ] : http://commitizen.github.io/cz-cli/
0 commit comments