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