partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

commit 199249ebc2a898734e442b2e3db199413957e479
parent c4a19ad78b807db9693da8433049297d5c47f914
Author: Felicitus <felicitus@felicitus.org>
Date:   Tue,  8 Sep 2015 15:41:57 +0200

Load models early, because extending a store will automatically load the model, but we don't use the Ext autoloader.

Diffstat:
Msrc/PartKeepr/FrontendBundle/Resources/views/index.html.twig | 22+++++++++++++---------
1 file changed, 13 insertions(+), 9 deletions(-)

diff --git a/src/PartKeepr/FrontendBundle/Resources/views/index.html.twig b/src/PartKeepr/FrontendBundle/Resources/views/index.html.twig @@ -35,12 +35,23 @@ } } </script> - {% javascripts - output='js/compiled/main.js' + {% javascripts output='js/compiled/main.js' 'js/packages/extjs6/build/ext-all-debug.js' 'js/packages/extjs6/build/packages/charts/classic/charts.js' 'js/packages/extjs6/build/packages/ux/classic/ux-debug.js' '@PartKeeprFrontendBundle/Resources/public/js/Data/field/Array.js' + '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraModel.js' + '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraTreeModel.js' + %} + + <script type="text/javascript" src="{{ asset_url }}"></script> + {% endjavascripts %} + + {% for i in models %} + <script type="text/javascript" src="{{ i }}"></script> + {% endfor %} + + {% javascripts output='js/compiled/main2.js' '@PartKeeprFrontendBundle/Resources/public/js/Util/Crypto/isaac.js' '@PartKeeprFrontendBundle/Resources/public/js/Util/Crypto/bcrypt.js' '@PartKeeprFrontendBundle/Resources/public/js/Util/Crypto/core.js' @@ -68,8 +79,6 @@ '@PartKeeprFrontendBundle/Resources/public/js/Dialogs/FileUploadDialog.js' '@PartKeeprFrontendBundle/Resources/public/js/Dialogs/RememberChoiceMessageBox.js' '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraProxy.js' - '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraModel.js' - '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraTreeModel.js' '@PartKeeprFrontendBundle/Resources/public/js/Data/HydraReader.js' '@PartKeeprFrontendBundle/Resources/public/js/Data/store/PartCategoryStore.js' '@PartKeeprFrontendBundle/Resources/public/js/ExtJS/Enhancements/Ext.tree.View-missingMethods.js' @@ -201,13 +210,8 @@ '@PartKeeprFrontendBundle/Resources/public/js/php.default.min.js' '@PartKeeprFrontendBundle/Resources/public/js/webcam.js' %} - <script type="text/javascript" src="{{ asset_url }}"></script> {% endjavascripts %} - - {% for i in models %} - <script type="text/javascript" src="{{ i }}"></script> - {% endfor %} </head> <body> <div id="loading"><span class="logo"></span></div>