@raphy/ngx-equalizer
v1.0.0
Published
A library to equalize height and width of elements with Angular4+
Downloads
24
Maintainers
Readme
ngx-equalizer
A library to equalize height and width of elements with Angular4+
Table of contents
Installation
npm install --save ngx-equalizer
Once installed you need to import our main module:
import { EqualizerModule } from 'ngx-equalizer';
The only remaining part is to list the imported module in your application module.
@NgModule({
declarations: [AppComponent, ...],
imports: [EqualizerModule.forRoot(), ...],
bootstrap: [AppComponent]
})
export class AppModule {
}
Contributing
- Before adding any new feature or a fix make sure to open an issue first!
Make sure you have angular-cli
& karma
installed globally.
$ npm install -g angular-cli karma
Clone the project, and install dependencies.
$ git clone https://github.com/raphy/ngx-equalizer.git
$ npm install
Create a new branch
$ git checkout -b feat/someFeature
Add tests & make sure everything is running properly
$ npm test
Commit & push, and make a pull request!