scinote-web/app/assets/javascripts/results/result_tables/new.js

8 lines
187 B
JavaScript
Raw Normal View History

/* global Results */
(function() {
$('.new-result-tables-buttons').on('click', '.save-result', (event) => {
Results.processResult(event, Results.ResultTypeEnum.TABLE);
});
}());