-
Notifications
You must be signed in to change notification settings - Fork 0
File Structure
Roheem Olayemi edited this page Jan 23, 2020
·
2 revisions
index.html is the application entry point.
index.css - defines the application styling
The actions and user interactions are carried out by the JavaScript files.
* app.js (Initiates the Model, View, and Controller)
* controller.js (Defines all user action listeners and likewise connects View interactions with Model operations)
* model.js (Data management methods are defined)
* view.js (Defines methods for displaying data)
* store.js (Delivers sample data storage solution)
* template.js (Delivers template function for displaying list items and changing button states)
* helpers.js (Deliver helper functions for DOM elements)