Skip to content

Commit

Permalink
accept .json as well as .tree for TO upload
Browse files Browse the repository at this point in the history
  • Loading branch information
tconfrey committed May 2, 2024
1 parent 351b163 commit 69c0798
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@

<div style="border-top: solid 1px #ddd" onClick="$('#to_upload').val('');">
<label for="to_upload" class="button_text">A TabsOutliner export</label>
<input type="file" id="to_upload" name="to_upload" accept=".tree"
<input type="file" id="to_upload" name="to_upload" accept=".tree,.json"
style="display:none" onchange="importTabsOutliner()">
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion versions/Release-Candidate/app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@

<div style="border-top: solid 1px #ddd" onClick="$('#to_upload').val('');">
<label for="to_upload" class="button_text">A TabsOutliner export</label>
<input type="file" id="to_upload" name="to_upload" accept=".tree"
<input type="file" id="to_upload" name="to_upload" accept=".tree,.json"
style="display:none" onchange="importTabsOutliner()">
</div>
</div>
Expand Down

0 comments on commit 69c0798

Please sign in to comment.