mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-22 23:48:18 +08:00
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
|
/* global Results */
|
||
|
|
||
|
(function() {
|
||
|
$('.edit-result-tables-buttons').on('click', '.save-result', (event) => {
|
||
|
Results.processResult(event, Results.ResultTypeEnum.TABLE);
|
||
|
});
|
||
|
}());
|