A simple manga viewer using Manga Eden API - http://www.mangaeden.com/api/
- script.js must always be validated using JSLint. http://www.jslint.com
- Use camelCase on variables and functions
- Use 4 spaces on indentions
- Refrain from using server side programming languages
- Our base branch is master
- Branch out of master when doing a new module / feature
- Branch names should be min of 2 words max of 3 delimited by - e.g. home-ux
- For bug fixes add prefix fix to the branch name e.g. fix-scripts-js
- For commit messages please avoid being ambiguous e.g. Refactored function foo and bar in scripts.js
- Avoid commiting large chucks of code. Segregate.
- When done make sure your branch is updated, git checkout master
- Pull the latest version of master git pull
- Return to your branch git checkout branch-name
- Merge your branch to the latest version of master git merge master, fix conflicts if there are
- Push it to remote: git push origin branch-name
- Create a Pull Request for that branch merging to master.
- If you're sure that it will work, merge it to master.