Procházet zdrojové kódy

eval is evil

master
Pascal Gloor před 5 roky
rodič
revize
0c4a5aa09e
1 změnil soubory, kde provedl 4 přidání a 2 odebrání
  1. 4
    2
      www/js/autodoc.js

+ 4
- 2
www/js/autodoc.js Zobrazit soubor

@@ -217,8 +217,10 @@ function change_page() {
});

if (conf.pageinit[hash]) {
if ( window[conf.pageinit[hash]] ) {
window[conf.pageinit[hash]](args);
var func = conf.pageinit[hash];
console.log(func);
if ( window[func] ) {
window[func](args);
}
}
}

Načítá se…
Zrušit
Uložit