-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
50 lines (40 loc) · 1.24 KB
/
test.html
File metadata and controls
50 lines (40 loc) · 1.24 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
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.firebase.com/js/client/2.4.1/firebase.js"></script>
var ref = new Firebase("https://docs-examples.firebaseio.com/web/saving-data/fireblog")
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="oauth.js"></script>
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/hmac-sha1.js"></script>
<!-- sha256 -->
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/rollups/hmac-sha256.js"></script>
<script src="http://crypto-js.googlecode.com/svn/tags/3.1.2/build/components/enc-base64-min.js"></script>
<script src="getData.js"></script>
<script src="sha1.js"></script>
<script src="yelpme.js"></script>
<script src="firebaseConstant.js"></script>
<script src="newWish.js"></script>
<script>
findLandmarks();
yelpdata();//createWish(true,[]);
//createWish(true,[]);
//findLandmarks();
//monitorWishes();
//console.log(d);
</script>
</head>
<body>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<ol>
<li>List item 1</li>
<li>List item 2</li>
<li>List item 3</li>
</ol>
<div >
<p id="load"></p>
</div>
<button id="btn1">Append text</button>
<button id="btn2">Append list items</button>
</body>
</html>