"use strict"; function opennamu_edit_move_all() { let lang_data = new FormData(); lang_data.append('data', 'title_start_document title_end_document title_include_document move document_name'); fetch('/api/v2/lang', { method : 'POST', body : lang_data, }).then(function(res) { return res.json(); }).then(function(lang) { lang = lang["data"]; document.getElementById('opennamu_edit_move_all').innerHTML = '' + '' + '
' + '' + '
' + '' + '
' + '' + ''; }); }