Skip to content
Snippets Groups Projects
Commit 78a2532b authored by Antoine Rey's avatar Antoine Rey
Browse files

Merge pull request #136 from lukasz-szewc/staticFiles-jquery-url-fix

Fixes #135 Fixed url for jquery-ui. 
parents 9ad12d39 87d025f8
No related branches found
No related tags found
No related merge requests found
...@@ -19,13 +19,13 @@ PetClinic :: a Spring Framework demonstration ...@@ -19,13 +19,13 @@ PetClinic :: a Spring Framework demonstration
<script src="${jQuery}"></script> <script src="${jQuery}"></script>
<!-- jquery-ui.js file is really big so we only load what we need instead of loading everything --> <!-- jquery-ui.js file is really big so we only load what we need instead of loading everything -->
<spring:url value="/vendors/query-ui/ui/jquery.ui.core.js" var="jQueryUiCore"/> <spring:url value="/vendors/jquery-ui/ui/jquery.ui.core.js" var="jQueryUiCore"/>
<script src="${jQueryUiCore}"></script> <script src="${jQueryUiCore}"></script>
<spring:url value="/vendors/query-ui/ui/jquery.ui.datepicker.js" var="jQueryUiDatePicker"/> <spring:url value="/vendors/jquery-ui/ui/jquery.ui.datepicker.js" var="jQueryUiDatePicker"/>
<script src="${jQueryUiDatePicker}"></script> <script src="${jQueryUiDatePicker}"></script>
<!-- jquery-ui.css file is not that big so we can afford to load it --> <!-- jquery-ui.css file is not that big so we can afford to load it -->
<spring:url value="/vendors/query-ui/themes/base/jquery.ui.base.css" var="jQueryUiCss"/> <spring:url value="/vendors/jquery-ui/themes/base/jquery.ui.base.css" var="jQueryUiCss"/>
<link href="${jQueryUiCss}" rel="stylesheet"></link> <link href="${jQueryUiCss}" rel="stylesheet"/>
</head> </head>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment