|
54 | 54 |
|
55 | 55 | <script type="text/javascript" src="./public/js/STIXUtilities.js"></script>
|
56 | 56 | <script type="text/javascript" src="./public/js/STIXNameResolver.js"></script>
|
| 57 | +<script type="text/javascript" src="./public/js/STIXFilters.js"></script> |
57 | 58 | <script type="text/javascript" src="./public/js/STIXRelationshipTree.js"></script>
|
58 | 59 | <script type="text/javascript" src="./public/js/STIXRelationshipGraph.js"></script>
|
59 | 60 | <script type="text/javascript" src="./public/js/STIXRelationshipTimeline.js"></script>
|
|
81 | 82 | <li id="showHtml"><a tabindex="-1" href="#">Show HTML</a></li>
|
82 | 83 | </ul>
|
83 | 84 | </div>
|
| 85 | + <div id="filterDiv"> |
| 86 | + <div id="filterDivTitle"><span id="filterDivTitleText">Filter by Nodes/Relationships</span><a data-toggle="collapse" + data-target="#filterDivMenu" class="expandCollapse">-</a></div> |
| 87 | + <div class="collapse in" id="filterDivMenu" ></div> |
| 88 | + </div> |
84 | 89 | <div id="contentDiv">
|
85 | 90 | <span id="initialInstructions">Choose files to generate a tree view, or use the drop down menu to select another view type.</span>
|
86 | 91 | <!-- leave for debugging purposes -->
|
|
133 | 138 |
|
134 | 139 | <script id="graphContextMenuTemplate" type="text/template">
|
135 | 140 | <li id="toggleFix"><a tabindex="-1" href="#"></a></li>
|
| 141 | + <li id="showLabels"><a tabindex="-1" href="#"></a></li> |
136 | 142 | <li id="hideNode"><a tabindex="-1" href="#">Hide Node</a></li>
|
137 | 143 | </script>
|
138 | 144 |
|
|
149 | 155 | </div>
|
150 | 156 | <button id="unpinAllButton" type="button" class="btn btn-default">Unpin All</button>
|
151 | 157 | <span class="nav-divider">|</span>
|
152 |
| - <button id="widthPlus" type="button" class="btn btn-default" title="Increase Graph Width">W+</button> |
153 |
| - <button id="widthMinus" type="button" class="btn btn-default" title="Decrease Graph Width">W-</button> |
154 |
| - <button id="heightPlus" type="button" class="btn btn-default" title="Increase Graph Height">H+</button> |
155 |
| - <button id="heightMinus" type="button" class="btn btn-default" title="Decrease Graph Height">H-</button> |
| 158 | + <table id="graphSizeTable"> |
| 159 | + <tr id="sizePlus"> |
| 160 | + <td><button id="widthPlus" type="button" class="btn btn-default sizeButton" title="Increase Graph Width">width+</button></td> |
| 161 | + <td><button id="heightPlus" type="button" class="btn btn-default sizeButton" title="Increase Graph Height">height+</button></td> |
| 162 | + </tr> |
| 163 | + <tr id="sizeMinus"> |
| 164 | + <td><button id="widthMinus" type="button" class="btn btn-default sizeButton" title="Decrease Graph Width">width-</button></td> |
| 165 | + <td><button id="heightMinus" type="button" class="btn btn-default sizeButton" title="Decrease Graph Height">height-</button></td> |
| 166 | + </tr> |
| 167 | + </table> |
| 168 | + <span class="nav-divider">|</span> |
| 169 | + <button id="resetGraphButton" type="button" class="btn btn-default" title="Reset Graph">Reset</button> |
156 | 170 | <span class="nav-divider">|</span>
|
157 |
| - <button id="resetGraphButton" type="button" class="btn btn-default">Reset Graph Size</button> |
| 171 | + <button id="freeze" type="button" class="btn btn-default freeze" title="Freeze Graph">Freeze</button> |
158 | 172 | <span class="nav-divider">|</span>
|
159 |
| - <button id="freeze" type="button" class="btn btn-default freeze">Freeze Graph</button> |
| 173 | + <button id="groupButton" type="button" class="btn btn-default" title="Toggle Grouping Nodes">Ungroup</button> |
160 | 174 | </form>
|
161 | 175 | </script>
|
162 | 176 |
|
|
0 commit comments