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