A Post-It app.
The app is made with a heirarchial structure with Core at the base, Sandbox on top of it and other modules interacting via Sandbox using pub-sub pattern thus becoming independent and unknown to each others' functionality.(loose coupling)
At the base, jQuery library has been used, but strictly for DOM manipulations, rest of the app is oblivious to this fact and is written in Object Oriented JavaScript with sensical use of patterns such as:
- Module
- Revealing Module
- Constructor
- Singleton
- Observer