-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
140 lines (131 loc) · 4.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>The-M-Project Documentation</title>
<link rel="stylesheet" type="text/css" href="css/style.css" media="screen">
<script language="JavaScript" src="js/jquery-1.6.1.min.js"></script>
<script language="JavaScript" src="syntax_highlighting/jquery.syntax.min.js"></script>
<script language="JavaScript" src="js/navigator.js"></script>
<script language="JavaScript">
$(document).ready(function() {
if(document.location.hash && document.location.hash.substr(1) && document.location.hash.substr(1).split('/').length === 2) {
loadArticle(document.location.hash.substr(1));
}
});
</script>
</head>
<body>
<div id="header">
<img class="logo" src="images/logo_small.png" alt="The-M-Docs" onclick="loadArticle('home');" />
<div id="searchBar">
<span class="searchLabel">
Search:
</span>
<input type="text" name="search" id="search" autocomplete="off" />
<!--<input type="button" name="searchButton" id="searchButton" value="search" />-->
</div>
</div>
<div id="content">
<div id="sidebar">
<!--<input type="text" id="filterField" />-->
<ul class="nav">
<li>
<h3 class="small">Introduction</h3>
<ul class="subnav">
<li>JavaScript</li>
<li>What is The-M-Project?</li>
<li>What is Espresso?</li>
</ul>
</li>
<li>
<h3 class="small">Tutorials</h3>
<ul class="subnav">
<li>How to build a HelloWorld app</li>
<li>How to make a request</li>
<li>How to switch a page</li>
<li>How to use the sample apps</li>
<li>How to write a ToDos app</li>
<li>How to use Espresso on windows</li>
<!--<li>How to localize an app</li>
<li>How to handle multiple events</li>-->
</ul>
</li>
<li>
<h3 class="small">Core Concepts</h3>
<ul class="subnav">
<li>MVC</li>
<li>Content Binding</li>
<li>Dynamic Value Computing</li>
<li>Event Handling</li>
</ul>
</li>
<li>
<h3 class="small">Espresso</h3>
<ul class="subnav">
<li>Command Overview</li>
</ul>
</li>
<li>
<h3 class="small">Components & Utilities</h3>
<ul class="subnav">
<li>M.Controller</li>
<li>M.Date</li>
<li>M.Environment</li>
<li>M.I18N</li>
<!--<li>M.Location</li>
<li>M.LocationManager</li>-->
<li>M.Logger</li>
<li>M.Request</li>
<li>M.Math</li>
<li>M.ViewManager</li>
</ul>
</li>
<li>
<h3 class="small">Views</h3>
<ul class="subnav">
<li>M.ActionSheetDialogView</li>
<li>M.AlertDialogView</li>
<li>M.ButtonView</li>
<li>M.ButtonGroupView</li>
<li>M.CanvasView</li>
<li>M.CarouselView</li>
<li>M.CarouselItemView</li>
<li>M.ConfirmDialogView</li>
<li>M.ContainerView</li>
<li>M.DashboardView</li>
<li>M.DashboardItemView</li>
<li>M.DatePickerView</li>
<li>M.DialogView</li>
<li>M.FormView</li>
<li>M.GridView</li>
<li>M.ImageView</li>
<li>M.LabelView</li>
<li>M.ListView</li>
<li>M.ListItemView</li>
<li>M.LoaderView</li>
<li>M.MapView</li>
<li>M.MapMarkerView</li>
<li>M.MovableLabelView</li>
<li>M.PageView</li>
<li>M.ScrollView</li>
<li>M.SearchBarView</li>
<li>M.SelectionListView</li>
<li>M.SelectionListItemView</li>
<li>M.SliderView</li>
<li>M.TabBarView</li>
<li>M.TabBarItemView</li>
<li>M.TableView</li>
<li>M.TextFieldView</li>
<li>M.ToggleView</li>
<li>M.ToggleSwitchView</li>
<li>M.ToolbarView</li>
</ul>
</li>
</ul>
</div>
<div id="container">
</div>
</div>
</body>
</html>