Increase default entity search radius to 100m

This commit is contained in:
David Rowe 2015-08-27 12:13:04 -07:00
parent a553022adf
commit 005851a74a
2 changed files with 3 additions and 3 deletions

View file

@ -235,7 +235,7 @@
<div id="entity-list">
<div id="search-area">
<input type="text" class="search" id="filter" placeholder="Filter" />
<span id="radius-and-unit"><input type="number" id="radius" value="50" />&nbsp;m</span>
<span id="radius-and-unit"><input type="number" id="radius" value="100" />&nbsp;m</span>
</div>
<table id="entity-table">
<thead>
@ -256,7 +256,7 @@
</table>
</div>
<div id="no-entities">
No entities found within a <span id="no-entities-radius">50</span> meter radius. Try moving to a different location and refreshing.
No entities found within a <span id="no-entities-radius">100</span> meter radius. Try moving to a different location and refreshing.
</div>
</body>
</html>

View file

@ -4,7 +4,7 @@ EntityListTool = function(opts) {
var url = Script.resolvePath('html/entityList.html');
var webView = new WebWindow('Entities', url, 200, 280, true);
var searchDiameter = 100;
var searchDiameter = 200;
var visible = false;