Skip to content

Commit

Permalink
Changed organism list getter to a GET method vs POST
Browse files Browse the repository at this point in the history
  • Loading branch information
jorvis committed May 25, 2021
1 parent 3f3f4dd commit b8995be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions www/js/dataset_explorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -564,8 +564,8 @@ function load_organism_list() {

$.ajax({
url : './cgi/get_organism_list.cgi',
type: "POST",
data : { 'session_id': session_id },
type: "GET",
data : {},
dataType:"json",
success: function(data, textStatus, jqXHR) {
var ListTmpl = $.templates("#organism_list_tmpl");
Expand Down

0 comments on commit b8995be

Please sign in to comment.