mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-15 12:15:50 +00:00
fixed url for jquery-ui. There was typo "query" instaed of "jquery" and file cannot be loaded
This commit is contained in:
parent
df4e3a5541
commit
87d025f854
1 changed files with 4 additions and 4 deletions
|
@ -19,13 +19,13 @@ PetClinic :: a Spring Framework demonstration
|
|||
<script src="${jQuery}"></script>
|
||||
|
||||
<!-- 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>
|
||||
|
||||
<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>
|
||||
|
||||
<!-- 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"/>
|
||||
<link href="${jQueryUiCss}" rel="stylesheet"></link>
|
||||
<spring:url value="/vendors/jquery-ui/themes/base/jquery.ui.base.css" var="jQueryUiCss"/>
|
||||
<link href="${jQueryUiCss}" rel="stylesheet"/>
|
||||
</head>
|
||||
|
|
Loading…
Reference in a new issue