aggiunta funzione manageMM per aggiornamento minimap (test)
This commit is contained in:
parent
9b40d4c770
commit
a256eaaacf
|
@ -435,8 +435,9 @@ $(" ."+formaClass).hover(function(idx, element) {
|
||||||
|
|
||||||
//visualizzo
|
//visualizzo
|
||||||
$("#vistaFrasi").attr('style', 'display: d-flex;');
|
$("#vistaFrasi").attr('style', 'display: d-flex;');
|
||||||
|
manageMM("#vistaFrasi")
|
||||||
|
|
||||||
drawMinimap("#vistaFrasi")
|
//drawMinimap("#vistaFrasi")
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
@ -486,7 +487,8 @@ $(" ."+formaClass).hover(function(idx, element) {
|
||||||
//$("#" + $(this).attr('name').replace(" ", "_")).css("display", "block");
|
//$("#" + $(this).attr('name').replace(" ", "_")).css("display", "block");
|
||||||
$("#" + $(this).attr('name').replace(" ", "_")).attr('style', 'display: d-flex;')
|
$("#" + $(this).attr('name').replace(" ", "_")).attr('style', 'display: d-flex;')
|
||||||
|
|
||||||
drawMinimap("#" + $(this).attr('name').replace(" ", "_"))
|
//drawMinimap("#" + $(this).attr('name').replace(" ", "_"))
|
||||||
|
manageMM("#" + $(this).attr('name').replace(" ", "_"))
|
||||||
if (selectedVista=='frasi'){
|
if (selectedVista=='frasi'){
|
||||||
loadFrasi();
|
loadFrasi();
|
||||||
}
|
}
|
||||||
|
@ -494,6 +496,7 @@ $(" ."+formaClass).hover(function(idx, element) {
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
//Query
|
//Query
|
||||||
|
|
||||||
jQuery(document).delegate('#searchcomm, #searchcomm2', 'click', function(e) {
|
jQuery(document).delegate('#searchcomm, #searchcomm2', 'click', function(e) {
|
||||||
|
@ -652,6 +655,17 @@ $(" ."+formaClass).hover(function(idx, element) {
|
||||||
//drawMinimap(cantoDisplayed)
|
//drawMinimap(cantoDisplayed)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function manageMM(name){
|
||||||
|
currentMinimap = name;
|
||||||
|
let testhtml = $(currentMinimap)[0].outerHTML;
|
||||||
|
let minim=$(" .minimap__content")
|
||||||
|
let bm=minim.contents().find(' .blog-main')
|
||||||
|
bm.empty()
|
||||||
|
bm.append(testhtml)
|
||||||
|
getDimensionsDiv();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
var unitaRicerca='forma'
|
var unitaRicerca='forma'
|
||||||
|
|
||||||
function manageQuery(){
|
function manageQuery(){
|
||||||
|
|
Loading…
Reference in New Issue