1
0
Fork 0

Try another version

This commit is contained in:
Matthieu Dubuget 2016-10-16 11:18:20 +02:00
parent 74dbc3252b
commit 11c2ca006d
3 changed files with 5 additions and 27 deletions

View File

@ -24,7 +24,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1"> <meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="site_69553_1_29.css"> <link rel="stylesheet" href="site_69553_1_29.css">
<script src="jquery.js"></script> <script src="jquery-3.1.1.min.js"></script>
<!-- DE QUOI AFFICHER LES PHOTOS --> <!-- DE QUOI AFFICHER LES PHOTOS -->
<script src="galleria/galleria-1.4.2.min.js"></script> <script src="galleria/galleria-1.4.2.min.js"></script>
<style> <style>

4
jquery-3.1.1.min.js vendored Normal file

File diff suppressed because one or more lines are too long

26
jquery.js vendored
View File

@ -1,26 +0,0 @@
(function() {
var parts = document.location.search.slice( 1 ).split( "&" ),
length = parts.length,
i = 0,
current,
version,
url;
for ( ; i < length; i++ ) {
current = parts[ i ].split( "=" );
if ( current[ 0 ] === "jquery" ) {
version = current[ 1 ];
break;
}
}
if ( version === "git" ) {
url = "http://code.jquery.com/jquery-git.js";
} else {
url = "../../jquery-" + ( version || "1.9.1" ) + ".js";
}
document.write( "<script src='" + url + "'></script>" );
}() );