Modification du code source
Bonjour,
je voudrais pour mes besoins modifier le code source de jQuery 1.4.1.
Comment fait-on une fois le fichier modifié avoir une version "minified" ?
j'ai remplacé :
Code:
1 2 3 4 5 6 7 8 9 10 11 12
| // Override the abort handler, if we can (IE doesn't allow it, but that's OK)
// Opera doesn't fire onreadystatechange at all on abort
try {
var oldAbort = xhr.abort;
xhr.abort = function() {
if ( xhr ) {
oldAbort.call( xhr );
}
onreadystatechange( "abort" );
};
} catch(e) { } |
par :
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| // Override the abort handler, if we can (IE doesn't allow it, but that's OK)
// Opera doesn't fire onreadystatechange at all on abort
try {
var oldAbort = xhr.abort;
xhr.abort = function() {
if ( xhr ) {
try{ // correction bug IE7
oldAbort.call( xhr );
}catch(e){}
}
onreadystatechange( "abort" );
};
} catch(e) { } |