Skip to content
This repository was archived by the owner on Mar 4, 2019. It is now read-only.

Commit 6d1803b

Browse files
committed
Added notice about the new blueimp Gallery.
http://blueimp.github.io/Gallery/
1 parent fee0a36 commit 6d1803b

File tree

8 files changed

+337
-41
lines changed

8 files changed

+337
-41
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
default: css js
44

55
css:
6-
lessc --compress css/jquery.image-gallery.css > css/jquery.image-gallery.min.css
6+
node_modules/.bin/lessc --yui-compress css/jquery.image-gallery.css > css/jquery.image-gallery.min.css
77

88
js:
9-
uglifyjs -nc js/jquery.image-gallery.js > js/jquery.image-gallery.min.js
9+
node_modules/.bin/uglifyjs js/load-image.js js/jquery.image-gallery.js -c -m -o js/jquery.image-gallery.min.js

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# jQuery Image Gallery Plugin
22

3+
## Notice
4+
[blueimp Gallery](http://blueimp.github.io/Gallery/) is a completely rewritten, much improved image gallery, replacing this version.
5+
36
## Demo
4-
[jQuery Image Gallery Demo](http://blueimp.github.com/jQuery-Image-Gallery/)
7+
[jQuery Image Gallery Demo](http://blueimp.github.io/jQuery-Image-Gallery/)
58

69
## Description & Usage
710
The Image Gallery plugin makes use of jQuery's

bower.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"name": "blueimp-image-gallery",
3+
"version": "2.5.1",
4+
"title": "jQuery Image Gallery",
5+
"description": "jQuery Image Gallery is an extension to the Dialog component of jQuery UI, to ease navigation between a set of gallery images. It features mouse and keyboard navigation, transition effects, fullscreen mode and slideshow functionality.",
6+
"keywords": [
7+
"image",
8+
"gallery",
9+
"lightbox",
10+
"dialog",
11+
"transition",
12+
"effects",
13+
"fullscreen",
14+
"slideshow"
15+
],
16+
"homepage": "https://github.com/blueimp/jQuery-Image-Gallery",
17+
"author": {
18+
"name": "Sebastian Tschan",
19+
"url": "https://blueimp.net"
20+
},
21+
"repository": {
22+
"type": "git",
23+
"url": "git://github.com/blueimp/jQuery-Image-Gallery.git"
24+
},
25+
"licenses": [
26+
{
27+
"type": "MIT",
28+
"url": "http://www.opensource.org/licenses/MIT"
29+
}
30+
],
31+
"devDependencies": {
32+
"uglify-js": "2.3.6",
33+
"less": "1.4.0"
34+
},
35+
"dependencies": {
36+
"jquery": ">=1.6",
37+
"jquery-ui": ">=1.8"
38+
}
39+
}

css/jquery.image-gallery.min.css

Lines changed: 1 addition & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!DOCTYPE HTML>
22
<!--
33
/*
4-
* jQuery Image Gallery Plugin Demo 2.3
4+
* jQuery Image Gallery Plugin Demo 2.5.1
55
* https://github.com/blueimp/jQuery-Image-Gallery
66
*
77
* Copyright 2011, Sebastian Tschan
@@ -18,21 +18,20 @@
1818
<meta name="description" content="jQuery Image Gallery is an extension to the Dialog component of jQuery UI, to ease navigation between a set of gallery images. It features mouse and keyboard navigation, transition effects, fullscreen mode and slideshow functionality.">
1919
<meta name="viewport" content="width=device-width">
2020
<!-- jQuery UI styles -->
21-
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/themes/south-street/jquery-ui.css" id="theme">
21+
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/themes/south-street/jquery-ui.css" id="theme">
2222
<!-- jQuery Image Gallery styles -->
2323
<link rel="stylesheet" href="css/jquery.image-gallery.min.css">
2424
<!-- Generic page styles -->
2525
<link rel="stylesheet" href="css/style.css">
2626
</head>
2727
<body>
2828
<ul class="nav">
29-
<li><a href="https://github.com/blueimp/jQuery-Image-Gallery/downloads">Downloads</a></li>
29+
<li><a href="https://github.com/blueimp/jQuery-Image-Gallery/tags">Download</a></li>
3030
<li><a href="https://github.com/blueimp/jQuery-Image-Gallery">Source Code</a></li>
31-
<li><a href="https://github.com/blueimp/jQuery-Image-Gallery">Documentation</a></li>
32-
<li><a href="https://github.com/blueimp/jQuery-Image-Gallery/issues">Issues</a></li>
31+
<li><a href="https://github.com/blueimp/jQuery-Image-Gallery/blob/master/README.md">Documentation</a></li>
3332
<li><a href="https://blueimp.net">&copy; Sebastian Tschan</a></li>
3433
</ul>
35-
<br>
34+
<p style="font-size: 16px;"><strong>Notice:</strong><br><a href="http://blueimp.github.io/Gallery/">blueimp Gallery</a> is a completely rewritten, much improved image gallery, replacing this version.</p>
3635
<h1>jQuery Image Gallery Demo</h1>
3736
<blockquote>
3837
<p>jQuery Image Gallery is an extension to the Dialog component of jQuery UI, to ease navigation between a set of gallery images.<br>
@@ -88,12 +87,12 @@ <h1>jQuery Image Gallery Demo</h1>
8887
<br>
8988
<!-- The container element for the gallery images -->
9089
<div id="gallery"></div>
91-
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
92-
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.8.17/jquery-ui.min.js"></script>
90+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
91+
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js"></script>
9392
<!-- The Load Image plugin, providing image loading and resizing functionality -->
94-
<script src="http://blueimp.github.com/JavaScript-Load-Image/load-image.min.js"></script>
93+
<script src="js/load-image.js"></script>
9594
<!-- The jQuery Image Gallery plugin -->
96-
<script src="js/jquery.image-gallery.min.js"></script>
95+
<script src="js/jquery.image-gallery.js"></script>
9796
<!-- The main application script -->
9897
<script src="js/main.js"></script>
9998
</body>

js/jquery.image-gallery.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)