Skip to content

Commit 968f59e

Browse files
committed
Adding exercise 4 files
1 parent dac0631 commit 968f59e

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

EXERCISE/Exercise 4/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<title>Exercise 4</title>
6+
<link rel="stylesheet" href="css/style.css?v=1.0.0.1">
7+
</head>
8+
<body>
9+
10+
<script type="text/javascript" src="js/main.js"></script>
11+
12+
</body>
13+
</html>

EXERCISE/Exercise 4/readme.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Creating a simple web application
2+
3+
## Features
4+
5+
* Create a singlton (app) structure to control the application - controller
6+
* method init - called on window load
7+
* public methods
8+
* setter methods
9+
* getter methods
10+
* private methods
11+
* public variables
12+
* private variables
13+
* event system
14+
* Create a class alike function using the creational design pattern
15+
* treated as a view object
16+
* must have a constructor
17+
* must have template
18+
* must have a destroy method
19+
* event system

0 commit comments

Comments
 (0)