kendo-labs / kendo-bootstrapper

GNU General Public License v3.0
49 stars 20 forks source link

list css files before js files, in default html file #8

Closed mxriverlynn closed 11 years ago

mxriverlynn commented 11 years ago

one of those performance things i've ready about 1,000 times... we shouldn't list css files after js files, cause it causes things to pause and restart strangely, to make sure the js and css are interacting correctly... i think... someone correct me if i'm getting this backwards :D

this is the default index.html file:

    <!--KENDO_BOOTSTRAPPER:FILES--><script src='kendo/js/jquery.min.js'></script>
<link rel='stylesheet' href='kendo/css/kendo.common.min.css' />
<link rel='stylesheet' href='kendo/css/kendo.default.min.css' />
<script src='kendo/js/kendo.web.min.js'></script>
<link rel='stylesheet/less' href='css/app.less' />
<script src='js/app.js'></script>
<script src='js/less-1.3.3.min.js'></script><!--/KENDO_BOOTSTRAPPER:FILES-->

the app.less file should be moved above the kendo.web.min.js file