Skip to content
Snippets Groups Projects
Select Git revision
  • main
  • jorvill-main-patch-63910
  • jorvill-main-patch-12338
3 results

handlers.js

Blame
  • Forked from DESI_22-23 / PrecioCarburantes
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    handlers.js 579 B
    /*******************************
     ** By: Jorge Villanueva Sanz **
     *******************************/
    
    
    /**
     * Manejador del slider selector de año
     */
    function handlerSelectMes(){
        data_mes = document.getElementById('dropMeses').value
        d3.select("#mapa").selectAll("svg").remove();
        plotCyL(document.getElementById('dropMeses').value, document.getElementById('vars').value);
    
    }
    
    /**
     * Manejador del slider selector de variables del mapa.
     */
    function handlerListaCarb(){
    
        plotCyL(document.getElementById('dropMeses').value, document.getElementById('vars').value);
    }