- Fix a bug you found or already reported on the GitHub Issues Tracker.
- Add new features to the project.
- Create new themes
- Add new test cases.
- Add documentation.
- Add a demo page.
- Donate money for the project on
Here are the basic steps to get started contributing code:
- Fork the repo and get development running on your computer.
- Install gulp and karma
npm install gulp-cli karma-cli -g
- Install the npm development dependencies by the command
npm install
on the project folder (Should have NodeJS installed). - Replicate the issue you're trying to fix or spec out the feature you're trying to add.
- Run
gulp watch
before start changing code. It will auto build and bundle the.js
and.css
files when you change. - Change the code to fix the bug or add the feature. All changes should happen in the relevant
src/js/*.js
andsrc/css/*.css
files. - Build the code by running
npm run build
orgulp build
. - Run the test cases by running
npm test
orgulp test
, you can also add more test cases based on your new change. - Verify that your fix or feature works.
- Commit your changes with an informative description.
- Open a pull request to the dev branch of the repo with your new commit and a descriptive message about what the PR does.
Thank you for your contribution!
- Follow the same code style as the library.
- Run the test suites in the
test
directory first by runningnpm test
orgulp test
. - Don't modify any files in the
dist
directory. - Don't alter the licence headers.
Before reporting the bug, please make sure that the bug is in the project and not from your own code or any other library used.
Bugs in the older versions of the project may have already been fixed. In order to avoid reporting known issues, make sure you are always testing against the latest release. Also make sure the problem hasn't already been reported on the GitHub Issues Tracker. If not, create a new issue there and include your test case.
Million thanks to all our Code Contributors and Supporters.