+1 , especially because I have OCD and I'd like all digits to be 1M.Gaetan89 wrote:What do you think about using the newly released jQuery 1.11.1?
[RFC] Update jQuery included in 3.1 to 1.11.0
Re: [RFC] Update jQuery included in 3.1 to 1.11.0
Re: [RFC] Update jQuery included in 3.1 to 1.11.0
I don't see how we could refuse. Flawless logic.Louis7777 wrote:+1 , especially because I have OCD and I'd like all digits to be 1M.Gaetan89 wrote:What do you think about using the newly released jQuery 1.11.1?
Re: [RFC] Update jQuery included in 3.1 to 1.11.0
Ressurecting this because of something that I've noticed.
From http://www.w3schools.com/jsref/jsref_unescape.asp
Should we replace unescape()?
From http://www.w3schools.com/jsref/jsref_unescape.asp
We use that to load jQuery from a local directory in case that the google CDN is not available:The unescape() function was deprecated in JavaScript version 1.5. Use decodeURI() or decodeURIComponent() instead.
Code: Select all
<script type="text/javascript">window.jQuery || document.write(unescape('%3Cscript src="./assets/javascript/jquery.min.js?assets_version=1713" type="text/javascript"%3E%3C/script%3E'));</script>
Re: [RFC] Update jQuery included in 3.1 to 1.11.0
It can actually be written:
This is how HTML5BoilerPlate has promoted doing it for over the past 3 years.
There was some resistance to this simpler form here for some reason before, I think it had something to do with XML. But I don't know if we are past that now or what.
Code: Select all
<script>window.jQuery || document.write('<script src="./assets/javascript/jquery.min.js?assets_version=1713"><\/script>');</script>
There was some resistance to this simpler form here for some reason before, I think it had something to do with XML. But I don't know if we are past that now or what.
Has an irascible disposition.
Re: [RFC] Update jQuery included in 3.1 to 1.11.0
Ticket to change it? or not worth it?
Re: [RFC] Update jQuery included in 3.1 to 1.11.0
At least change unescape to one of the decodeURI methods.
Has an irascible disposition.
Re: [RFC] Update jQuery included in 3.1 to 1.11.0
Worth itPayBas wrote:Ticket to change it? or not worth it?
- callumacrae
- Former Team Member
- Posts: 1046
- Joined: Tue Apr 27, 2010 9:37 am
- Location: England
- Contact:
Re: [RFC] Update jQuery included in 3.1 to 1.11.0
Does jQuery use semver?