Ticket #5262 (closed bug: worksforme)
jquery-1.3.2.min.js has bug.(minimizing bug)
| Reported by: | kmy504 | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.3.2 |
| Component: | unfiled | Version: | 1.3.2 |
| Keywords: | semi-colon grammar error | Cc: | |
| Blocking: | Blocked by: |
Description
I've used jquery-1.3.2.min.js that downdloaded in http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.2.min.js.
But It has some grammar error.
Look at around line 19, char 27021. There is no semi-colon(;). Here is some code that jquery.min.js has error
var J=M.xhr(); if(M.username){
J.open(G,M.url,M.async,M.username,M.password)
}else{
J.open(G,M.url,M.async)
} try{
if(M.data){
J.setRequestHeader("Content-Type",M.contentType)
}if(M.ifModified){
J.setRequestHeader("If-Modified-Since",o.lastModified[M.url] "Thu, 01 Jan 1970 00:00:00 GMT")
}
As you can see, there is many grammar error with semi-colon
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

The Google versions of these files are fine. Perhaps something mangled your local versions?