Skip to content

Commit

Permalink
Fix settings Export/import Seed
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Masley committed Feb 10, 2017
1 parent 2e31ab1 commit c87ab03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion web/statics/js/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -1333,7 +1333,7 @@ $("#settings-import-file").on('click', function(e){


$("#settings-uploaded-file").on('change', function(){
input = document.getElementById('uploaded-file');
input = document.getElementById('settings-uploaded-file');
if (!input) {
SetGeneralError("Error: Couldn't find the fileinput element.")
}
Expand Down
2 changes: 1 addition & 1 deletion web/statics/js/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ $("#settings-import-file").on('click', function(e){


$("#settings-uploaded-file").on('change', function(){
input = document.getElementById('uploaded-file');
input = document.getElementById('settings-uploaded-file');
if (!input) {
SetGeneralError("Error: Couldn't find the fileinput element.")
}
Expand Down

0 comments on commit c87ab03

Please sign in to comment.