Skip to content
Snippets Groups Projects
Commit 24892033 authored by Dorchies David's avatar Dorchies David
Browse files

Merge branch '34-documentation-utilisateur-dans-les-interfaces' into 'master'

Resolve "Documentation utilisateur dans les interfaces"

Closes #34

See merge request !26
parents ef75947e 3c7adf4a
No related branches found
No related tags found
2 merge requests!27Master,!26Resolve "Documentation utilisateur dans les interfaces"
......@@ -3,7 +3,6 @@ import { ParamService } from "./param/param.service";
import { FormulaireService } from "./formulaire/formulaire.service";
import { InternationalisationService } from "./internationalisation/internationalisation.service";
import { HttpService } from "./http/http.service";
import { HelpService } from "./help/help.service";
export class ServiceFactory {
private static _instance: ServiceFactory; // instance pour le pattern singleton
......@@ -20,11 +19,10 @@ export class ServiceFactory {
public httpService: HttpService;
public helpService: HelpService;
public static get instance() {
if (ServiceFactory._instance == undefined)
if (ServiceFactory._instance == undefined) {
ServiceFactory._instance = new ServiceFactory();
}
return ServiceFactory._instance;
}
}
......@@ -31,21 +31,6 @@
}
</style>
-->
<!-- MathJax-->
<!-- config locale qui s'ajoute à la config par défaut (ajoute les expressions LateX inline avec $....$) -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [['$','$'], ['\\(','\\)']],
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre']
}
});
</script>
<!-- récupération du code + configuration par défaut -->
<script type="text/javascript" src="assets/mathjax/MathJax.js?config=TeX-AMS_CHTML"></script>
<!-- /MathJax-->
</head>
<body>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment