diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-23 20:47:46 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-23 20:47:46 -0400 |
commit | 948ebb242490092c5a7e187c3b7813134b047d5e (patch) | |
tree | 28ed10f76c648ad8c70ffcc74e85c6de1ad8cfde /app/Template/budget | |
parent | cdd2080fc0041d71b99862a9aa3542fe6150c6c4 (diff) |
Improve assets loading: remove http call to load task colors and async load of app.js
Diffstat (limited to 'app/Template/budget')
-rw-r--r-- | app/Template/budget/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Template/budget/index.php b/app/Template/budget/index.php index 3b594017..80153bbd 100644 --- a/app/Template/budget/index.php +++ b/app/Template/budget/index.php @@ -1,6 +1,3 @@ -<?= $this->asset->js('assets/js/vendor/d3.v3.min.js') ?> -<?= $this->asset->js('assets/js/vendor/c3.min.js') ?> - <div class="page-header"> <h2><?= t('Budget overview') ?></h2> </div> @@ -32,3 +29,6 @@ <?php else: ?> <p class="alert"><?= t('There is not enough data to show something.') ?></p> <?php endif ?> + +<?= $this->asset->js('assets/js/vendor/d3.v3.min.js') ?> +<?= $this->asset->js('assets/js/vendor/c3.min.js') ?>
\ No newline at end of file |