MediaWiki:MARCimporter.js: mudanças entre as edições
Ir para navegação
Ir para pesquisar
m (uma edição) |
Sem resumo de edição |
||
(2 revisões intermediárias pelo mesmo usuário não estão sendo mostradas) | |||
Linha 1: | Linha 1: | ||
/* jshint esversion: 10 */ |
|||
$(document).ready(function(){ |
|||
const mainFunc = () => { |
|||
$("#wpRunQuery").click(function(){ |
|||
const prepareRecordBtn = document.body.querySelector('#wpRunQuery'); |
|||
⚫ | |||
prepareRecordBtn.addEventListener('click', () => { |
|||
$("span.inputSpan").find("textarea").each(function() { |
|||
⚫ | |||
let input = $(this).val(); |
|||
const textarea = document.body.querySelector('textarea'); |
|||
let normalizedInput = input |
|||
textarea.value = textarea.value.replace(/\|/g, '$'); |
|||
⚫ | |||
$(this).val(normalizedInput); |
|||
⚫ | |||
}); |
|||
⚫ | |||
document.addEventListener('DOMContentLoaded', () => mainFunc()); |
|||
⚫ |
Edição atual tal como às 14h00min de 19 de agosto de 2024
/* jshint esversion: 10 */
const mainFunc = () => {
const prepareRecordBtn = document.body.querySelector('#wpRunQuery');
prepareRecordBtn.addEventListener('click', () => {
// when query, substitute | by $ in the textarea
const textarea = document.body.querySelector('textarea');
textarea.value = textarea.value.replace(/\|/g, '$');
});
};
document.addEventListener('DOMContentLoaded', () => mainFunc());