1.0.0 • Published 6 years ago

@raphy/ngx-equalizer v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

ngx-equalizer

npm Package Quality Travis Coveralls npm MIT licensed

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!