Parcourir la source

removed eval

master
Pascal Gloor il y a 5 ans
Parent
révision
433696814b
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. 3
    1
      www/js/autodoc.js

+ 3
- 1
www/js/autodoc.js Voir le fichier

@@ -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);
}
}
}


Chargement…
Annuler
Enregistrer