-
-
Notifications
You must be signed in to change notification settings - Fork 79k
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
Docs fixes #14941
Docs fixes #14941
Conversation
hillai
commented
Oct 30, 2014
- Fix the template in Getting Started to feature the latest version of jQuery, as per Add jQuery version check to existing jQuery presence check #14852
- Fix the modal documentation to mention the correct deprecation version (3.3.0 instead of the nonexistent 3.2.1).
@@ -27,7 +27,7 @@ <h1 id="template" class="page-header">Basic template</h1> | |||
<h1>Hello, world!</h1> | |||
|
|||
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> | |||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We still support IE 8, so we need to stick with jQuery 1.x
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, but wouldn't that throw an error according to #14852?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No. #14852 enforces jQuery>=1.9.1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I feel like I'm missing something here :(
1.11.1 isn't really >=1.9.1. Shouldn't the template still be changed to 1.9.1?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. Thanks for clarifiying!