|
35 | 35 | <a class="navbar-brand" href="#">JabMap</a> |
36 | 36 |
|
37 | 37 | <!--Save and Load Buttons--> |
38 | | - <button class="btn btn-light me-2" type="button" data-bs-toggle="tooltip" title="Save"> |
| 38 | + <button id = "saveBtn" class="btn btn-light me-2" type="button" data-bs-toggle="tooltip" title="Save"> |
39 | 39 | <i class="bi bi-save"></i> Save |
40 | 40 | </button> |
41 | | - <button class="btn btn-light me-2" type="button" data-bs-toggle="tooltip" title="Open"> |
| 41 | + <button id = "openBtn" class="btn btn-light me-2" type="button" data-bs-toggle="tooltip" title="Open"> |
42 | 42 | <i class="bi bi-folder2-open"></i> Open |
43 | 43 | </button> |
44 | 44 | </div> |
|
47 | 47 | <div class="position-absolute top-50 start-50 translate-middle d-flex justify-content-center"> |
48 | 48 | <!--Button class explanation: class = "btn colortheme margin to the right (me-2)"--> |
49 | 49 | <!--undo Button--> |
50 | | - <button class="btn btn-secondary me-2" type="button" data-bs-toggle="tooltip" title="Undo"> |
| 50 | + <button id = "undoBtn" class="btn btn-secondary me-2" type="button" data-bs-toggle="tooltip" title="Undo"> |
51 | 51 | <i class="bi bi-arrow-counterclockwise"></i> |
52 | 52 | </button> |
53 | 53 | <!--redo Button--> |
54 | | - <button class="btn btn-secondary me-2" type="button" data-bs-toggle="tooltip" title="Redo"> |
| 54 | + <button id = "redoBtn" class="btn btn-secondary me-2" type="button" data-bs-toggle="tooltip" title="Redo"> |
55 | 55 | <i class="bi bi-arrow-clockwise"></i> |
56 | 56 | </button> |
57 | 57 | <!--new topic (sibling node) Button--> |
58 | | - <button class="btn btn-secondary me-2" type="button" data-bs-toggle="tooltip" title="New sibling node"> |
| 58 | + <button id = "newSiblingBtn" class="btn btn-secondary me-2" type="button" data-bs-toggle="tooltip" title="New sibling node"> |
59 | 59 | <i class="bi bi-node-plus-fill"></i> |
60 | 60 | </button> |
61 | 61 | <!--new subtopic (child node) button (Icon rotated 90 degrees)--> |
62 | | - <button class="btn btn-secondary me-2" type="button" data-bs-toggle="tooltip" title="New child node"> |
| 62 | + <button id = "newChildBtn" class="btn btn-secondary me-2" type="button" data-bs-toggle="tooltip" title="New child node"> |
63 | 63 | <i class="bi bi-diagram-2-fill" style="transform: rotate(-90deg); display: inline-block;"></i> |
64 | 64 | </button> |
65 | 65 | <!--tags button--> |
66 | | - <button class="btn btn-secondary" type="button" data-bs-toggle="tooltip" title="Tags"> |
| 66 | + <button id = "tagsBtn" class="btn btn-secondary" type="button" data-bs-toggle="tooltip" title="Tags"> |
67 | 67 | <i class="bi bi-tags"></i> |
68 | 68 | </button> |
69 | 69 | </div> |
|
0 commit comments