-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.js
39 lines (32 loc) · 1.28 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
* Modelleertaal WebApp Configuration
*/
var config_js_loaded = true;
var N_default = 500; // default waarde voor N (aantal iteraties)
var base_url = 'https://www.tomkooij.nl/modelleertaal';
// titelbalk bovenaan
var title = 'Modelleertaal';
var title_link = 'https://www.github.com/tomkooij/modelleertaal';
// definitie van het "profiel", welke knoppen staan aan enz.
var full_webapp = [
{id: "#model_keuze", action: "show"},
{id: "#permalink", action: "show"},
{id: "#open_file_dialog", action: "show"},
// model blok
{id: "#continue_dialog", action: "show"},
{id: "#debugger_dialog", action: "show"},
// tabel output
];
var leerling_versie = [
// Uitgekleede webapp met zo min mogelijk afleiding
// bovenste blok
{id: "#model_keuze", action: "show"},
{id: "#permalink", action: "hide"},
{id: "#open_file_dialog", action: "hide"},
// model blok
{id: "#continue_dialog", action: "hide"},
{id: "#debugger_dialog", action: "hide"},
// tabel output
];
var profiellen = [leerling_versie, full_webapp];
var actieve_profiel = 0; // het profiel dat als eerste geladen wordt. Telt vanaf 0.