Sfoglia il codice sorgente

removed eval

master
Pascal Gloor 5 anni fa
parent
commit
433696814b
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. 3
    1
      www/js/autodoc.js

+ 3
- 1
www/js/autodoc.js Vedi File

@@ -217,7 +217,9 @@ function change_page() {
});

if (conf.pageinit[hash]) {
eval(conf.pageinit[hash](args));
if ( window[conf.pageinit[hash]] ) {
windows[conf.pageinit[hash]](args);
}
}
}


Loading…
Annulla
Salva