forked from axemclion/jquery-indexeddb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (47 loc) · 2.43 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
<!DOCTYPE html>
<html>
<head>
<title>IndexedDB Jquery Plugin</title>
<meta charset="utf-8">
</head>
<body>
<div style ="height : 80px; text-align: center; overflow : hidden" class = "title">
<h1 style ="background-color: #ABCDEF; color: Navy; margin: 0; padding: 0.3em;">Jquery Plugin for IndexedDB - Examples</h1>
<div style ="background-color : #BCDEFF; padding : 0.3em 0">
This is a test page. To see the API playground, visit <a href = "/trialtool/index.html#example=/IndexedDB/jquery/trialtool.html">this link</a>.
The IndexedDB specification is in draft and can change. These examples work best against Firefox 4.0.1 and Chrome 14.0 canary.
</div>
</div>
<br/>
<br/>
<div id = "examples" style ="padding : 1%;">
</div>
<script src="lib/jquery.min.js" type="text/javascript">
</script>
<script src= "jquery.indexeddb.js" type="text/javascript">
</script>
<script src = "test/jquery.indexeddb.test.js" type = "text/javascript">
</script>
<script src = "lib/demoer/demoer.js" type = "text/javascript">
</script>
<script>
loadDemoes("#examples", jqueryIndexedDB_Test);
</script>
<a href="https://github.com/axemclion/IndexedDB"><img style="position: absolute; top: 0; left: 0; border: 0;" src="https://d3nwyuy0nl342s.cloudfront.net/img/bec6c51521dcc8148146135149fe06a9cc737577/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f6c6566745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub"></a>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-617499-9']);
_gaq.push(['_setDomainName', 'github.com']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
(function(){
var ga = document.createElement('script');
ga.type = 'text/javascript';
ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>