-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest.html
59 lines (53 loc) · 1.43 KB
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Firebase Backend Test</title>
<link rel="stylesheet" href="https://get.mavo.io/mavo.css" />
<link rel="stylesheet" href="//test.mavo.io/style.css" />
<script src="https://get.mavo.io/mavo.js"></script>
<script src="mavo-firebase.js"></script>
</head>
<body>
<h1>Firebase Backend Test</h1>
<script src="https://www.gstatic.com/firebasejs/3.7.0/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyAD8tblNK1vz6QHiHxtu3cm1Ra089a3ptA",
authDomain: "dessert-eb3dc.firebaseapp.com",
databaseURL: "https://dessert-eb3dc.firebaseio.com",
storageBucket: "dessert-eb3dc.appspot.com",
messagingSenderId: "193049069813"
};
firebase.initializeApp(config);
</script>
<section mv-app="firebasetest public-read user-write" mv-storage="firebase">
<h1>Firebase</h1>
<p>Everyone can read, but users can edit and delete only their own items</p>
<table class="reftest">
<tr>
<td>
<ul>
<li property="country" mv-multiple>
<span property="code">Code</span>
<span property="name">Name</span>
</li>
</ul>
</td>
<td>
<ul>
<li>Online Online</li>
<li>us United States</li>
<li>gb United Kingdom</li>
<li>au Australia</li>
<li>at Austria</li>
<li>dfdf dfdfdffdf</li>
</ul>
</td>
</tr>
</table>
</section>
<script src="//test.mavo.io/test.js"></script>
</body>
</html>