Skip to content

Commit

Permalink
Added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-gaia committed Jun 10, 2016
1 parent d4523e2 commit ec8707c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions biosys/apps/publish/static/js/data_view.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,15 +100,15 @@ biosys.view_data = function ($, _, moduleOptions) {
);
url = '/publish/data/' + ds.id;
tableOptions = $.extend({
order: [[0, 'asc']]
order: [[0, 'asc']] // sort by id
}, defaultTableOptions, {
ajax: {
url: url,
method: 'get',
error: function (xhr, textStatus, thrownError) {
console.log("Error while loading applications data:", thrownError, textStatus, xhr.responseText, xhr.status);
//Stop the data table 'Processing'.
//$(options.selectors.applicationsTable + '_processing').hide();
//$(options.selectors.table + '_processing').hide();
}
}
});
Expand Down

0 comments on commit ec8707c

Please sign in to comment.