diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-01-29 14:57:27 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-01-29 14:57:27 +0100 |
| commit | 10bb75c89ed2eeb27255eafcde011bf2d425b1e4 (patch) | |
| tree | bead0d5d13896280b163474ee2676dc01ee9f5ff /ishtar_common/templates/ishtar/dashboards/dashboard_main.html | |
| parent | cf4b3bc0c6b99ed6260ae5964b9b67396415eaab (diff) | |
| download | Ishtar-10bb75c89ed2eeb27255eafcde011bf2d425b1e4.tar.bz2 Ishtar-10bb75c89ed2eeb27255eafcde011bf2d425b1e4.zip | |
Dashboard: fix dynamic load
Diffstat (limited to 'ishtar_common/templates/ishtar/dashboards/dashboard_main.html')
| -rw-r--r-- | ishtar_common/templates/ishtar/dashboards/dashboard_main.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/templates/ishtar/dashboards/dashboard_main.html b/ishtar_common/templates/ishtar/dashboards/dashboard_main.html index f2eefd6d3..692e435a3 100644 --- a/ishtar_common/templates/ishtar/dashboards/dashboard_main.html +++ b/ishtar_common/templates/ishtar/dashboards/dashboard_main.html @@ -17,7 +17,7 @@ $(function() { $('#dashboard .nav-link').click(function () { var url = $(this).attr('data-url'); - $("#dashboard .card-body").load(url); + dynamic_load(url, "#dashboard .card-body"); $('#dashboard li').removeClass('active'); $('#dashboard li').removeClass('show'); $(this).parent().tab('show'); |
