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