mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
c28f86d46d
Refactor inline events in task results [SCI-8434]
7 lines
187 B
JavaScript
7 lines
187 B
JavaScript
/* global Results */
|
|
|
|
(function() {
|
|
$('.new-result-tables-buttons').on('click', '.save-result', (event) => {
|
|
Results.processResult(event, Results.ResultTypeEnum.TABLE);
|
|
});
|
|
}());
|