Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathplugin.html
More file actions
Latest commit
45 lines (40 loc) · 1.55 KB
/
Copy pathplugin.html
File metadata and controls
45 lines (40 loc) · 1.55 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
<html>
<head>
<linkrel="stylesheet" type="text/css" href="index.css" />
<scripttype="text/javascript" src="https://dl.frontapp.com/libs/frontjs.min.js"></script>
<scripttype="text/javascript" src="index.js"></script>
<scripttype="text/javascript" src="mockCRM.js"></script>
</head>
<body>
<divclass="plugin-div">
<spanid="name" class="font name"></span>
<spanid="handle" class="font handle">-</span>
<divclass="navButtonRow width100percent">
<divid="infoButton" class="font navButton" onClick="showInfo()">Info</div>
<divid="notesButton" class="font navButton" onClick="showNotes()">Notes</div>
</div>
<divid="infoSection" class="width100percent">
<divclass="column">
<divclass="row">
<divclass="rowItem infoKey font">Id</div>
<divclass="rowItem infoValue font" id="id"></div>
</div>
<divclass="row">
<divclass="rowItem infoKey font">Location</div>
<divclass="rowItem infoValue font" id="location"></div>
</div>
<divclass="row">
<divclass="rowItem infoKey font">Status</div>
<divclass="rowItem infoValue font" id="status"></div>
</div>
</div>
</div>
<divid="notesSection" class="width100percent displayNone">
<divclass="column">
<buttonclass="newNote font" onClick="createNote()">+ New Note</button>
<divclass="column" id="notes"></div>
</div>
</div>
</div>
</body>
</html>