mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-09 08:57:41 +08:00
8 lines
187 B
JavaScript
8 lines
187 B
JavaScript
|
/* global Results */
|
||
|
|
||
|
(function() {
|
||
|
$('.edit-result-assets-buttons').on('click', '.save-result', (event) => {
|
||
|
Results.processResult(event, Results.ResultTypeEnum.FILE);
|
||
|
});
|
||
|
}());
|