aggiunta funzione globale per il reset del risultato
This commit is contained in:
parent
fddcbeee3d
commit
874a8b768f
|
@ -1,6 +1,8 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
var resetResult;
|
||||
|
||||
$(document).ready(function() {
|
||||
const categoriegrammaticali={"v":"Verbo", "s":"Sostantivo", "a":"Aggettivo", "p":"Pronome", "r":"Articolo", "b":"Avverbio","e":"Preposizione",
|
||||
"c":"Congiunzione", "i":"Interiezione", "n":"Onomastica", "f":"Citazione", "l":"Locuzione",
|
||||
|
@ -31,6 +33,11 @@ $(document).ready(function() {
|
|||
let realScale;
|
||||
let mappedElement = '';
|
||||
|
||||
resetResult=function(){
|
||||
console.log('clean result')
|
||||
cleanSearchResult()
|
||||
esprlogica = []
|
||||
}
|
||||
hideMinimap();
|
||||
|
||||
const start = performance.now();
|
||||
|
@ -117,7 +124,6 @@ $(document).ready(function() {
|
|||
|
||||
//Query
|
||||
|
||||
|
||||
jQuery(document).delegate('#searchcomm, #searchcomm2', 'click', function(e) {
|
||||
e.preventDefault();
|
||||
manageQuery()
|
||||
|
@ -134,8 +140,6 @@ $(document).ready(function() {
|
|||
|
||||
});
|
||||
|
||||
|
||||
|
||||
//Utility functions
|
||||
|
||||
function drawMinimap(name){
|
||||
|
@ -454,7 +458,6 @@ $(document).ready(function() {
|
|||
}
|
||||
catch (err) {
|
||||
console.log(err.message);
|
||||
//$("#loader").hide();
|
||||
};
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue