public
Description: Fleegix.js provides an extremely lightweight, cross-browser set of JavaScript tools for building dynamic Web-app UIs.
Homepage: http://js.fleegix.org
Clone URL: git://github.com/mde/fleegix-js-javascript-toolkit.git
100644 44 lines (30 sloc) 0.909 kb
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
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
 
<head>
<title>Fleegix.js Tests</title>
 
<script type="text/javascript" src="../fleegix.js.uncompressed.js"></script>
<script type="text/javascript" src="../plugins/date/util.js"></script>
<script type="text/javascript" src="../plugins/date/date.js"></script>
<script type="text/javascript" src="../plugins/string/auto_hyperlink.js"></script>
 
<script type="text/javascript">
 
function init() {
  fleegix.date.timezone.zoneFileBasePath = '/tz';
  fleegix.date.timezone.init();
}
 
fleegix.event.listen(window, 'onload', init);
 
</script>
 
<style type="text/css">
 
*{
  font-family: "Lucida Grande", "Verdana", sans-serif;
}
body {
  font-size: 11px;
}
</style>
 
</head>
 
<body>
  <h3 id="mainPageHeader">Fleegix.js Unit Tests</h3>
</body>
 
</html>