-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use custom jquery.js #897
Comments
BootsFaces checks the beginning of the file name. You've put jquery in a subfolder, so BootsFaces doesn't detect it. Maybe we should correct this in BootsFaces 1.2.0. |
I've uploaded a new version of the BootsFaces-1.2.0-SNAPSHOT. See #369 on how to get it. Can you test if the bug is solved in the new version? |
@stephanrauh it is marked Done in the Project board, can I close this issue? |
@dominicast The bugfix work if you modify your
This is the statement that worked on my machine: <h:outputScript library="reg"
name="js/jquery-1.11.1.min.js"
position="first"
target="head" /> |
Hi there
I use Bootfaces version 1.1.3 and I try to provide a custom version of jquery as described here:
CSS files, JS files and CDNs
These are my first lines of my template:
And this is what was finally generated:
I expected that the
<script type="text/javascript" src="/reg/resources/jq/jquery.js?ln=bsf"></script>
will be replaced by<script type="text/javascript" src="/reg/js/jquery-1.11.1.min.js"></script>
. This is how I understood the documentation. But it does not happen. I can avoid including the query.js?ln=bsf useing the web.xml parameter net.bootsfaces.get_jquery_from_cdn. But I need to load jquery before Bootfaces load alert.js and bsf.js. Can anyone help me to get this working?Thank you! Dominic
The text was updated successfully, but these errors were encountered: