Skip to content

Commit

Permalink
Set default Name/PlayerID interaction to OR
Browse files Browse the repository at this point in the history
  • Loading branch information
Elekester committed Jul 20, 2022
1 parent 1813acb commit b918058
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h1>PSO2 Chat Log Statistics</h1>
<label for="name_id_operation">Name and Player ID Filter Operation:</label>
<select name="name_id_operation" id="name_id_operation" onchange="ChatStats.name_id_operation_change();" disabled>
<option value="and">Player must match Name AND Player Id</option>
<option value="or">Player must match Name OR Player ID</option>
<option value="or" selected="selected">Player must match Name OR Player ID</option>
</select>
</div>
<div>
Expand Down
2 changes: 1 addition & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ ChatStats.helpers.enable_input = function () {

ChatStats.helpers.input_is_disabled = true;
ChatStats.helpers.filters_flag = true;
ChatStats.helpers.name_id_operation = true;
ChatStats.helpers.name_id_operation = false; // true if AND, false if OR.

/******************************************************************************
* Main
Expand Down

0 comments on commit b918058

Please sign in to comment.