Skip to content
This repository was archived by the owner on Dec 10, 2022. It is now read-only.

Commit 569ff6a

Browse files
committed
Release Version 1.7.12
1 parent 74a1634 commit 569ff6a

16 files changed

+29
-29
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Featherlight - ultra slim jQuery lightbox [![Build Status](https://travis-ci.org
1414

1515

1616

17-
## [» Download Current Release 1.7.11](https://github.com/noelboss/featherlight/archive/1.7.11.zip)
17+
## [» Download Current Release 1.7.12](https://github.com/noelboss/featherlight/archive/1.7.12.zip)
1818

1919
Here you'll find a [list of all the changes](https://github.com/noelboss/featherlight/blob/master/CHANGELOG.md) and you can also download [old releases](https://github.com/noelboss/featherlight/releases) or [the master including all the latest bling](https://github.com/noelboss/featherlight/archive/master.zip).
2020

@@ -23,14 +23,14 @@ Here you'll find a [list of all the changes](https://github.com/noelboss/feather
2323

2424
All styling is done using CSS so you'll want to include the Featherlight CSS in your head.
2525

26-
<link href="//cdn.rawgit.com/noelboss/featherlight/1.7.11/release/featherlight.min.css" type="text/css" rel="stylesheet" />
26+
<link href="//cdn.rawgit.com/noelboss/featherlight/1.7.12/release/featherlight.min.css" type="text/css" rel="stylesheet" />
2727

2828
Be aware that Featherlight uses very unspecific CSS selectors to help you overwrite every aspect. This means in turn, that if you're not following a modularized approach to write CSS (which you should! It's terrific!) and have many global and specific definitions (read ID's and such – which you shouldn't), these definitions can break the Featherlight styling.
2929

3030
Featherlight requires jQuery version 1.7.0 or higher (regular version, not the slim one). It's recommended to include the javascript at the bottom of the page before the closing `</body>` tag.
3131

3232
<script src="//code.jquery.com/jquery-latest.js"></script>
33-
<script src="//cdn.rawgit.com/noelboss/featherlight/1.7.11/release/featherlight.min.js" type="text/javascript" charset="utf-8"></script>
33+
<script src="//cdn.rawgit.com/noelboss/featherlight/1.7.12/release/featherlight.min.js" type="text/javascript" charset="utf-8"></script>
3434

3535

3636
# Usage
@@ -369,15 +369,15 @@ You will need to use an extension (featherlight.gallery.js). Since Featherlight
369369

370370
Simply include the extension CSS and JavaScript Files after the regular featherlight files like this:
371371

372-
<link href="//cdn.rawgit.com/noelboss/featherlight/1.7.11/release/featherlight.min.css" type="text/css" rel="stylesheet" />
373-
<link href="//cdn.rawgit.com/noelboss/featherlight/1.7.11/release/featherlight.gallery.min.css" type="text/css" rel="stylesheet" />
372+
<link href="//cdn.rawgit.com/noelboss/featherlight/1.7.12/release/featherlight.min.css" type="text/css" rel="stylesheet" />
373+
<link href="//cdn.rawgit.com/noelboss/featherlight/1.7.12/release/featherlight.gallery.min.css" type="text/css" rel="stylesheet" />
374374

375375
Add the JavaScript at the bottom of the body:
376376

377377
```html
378378
<script src="//code.jquery.com/jquery-latest.js"></script>
379-
<script src="//cdn.rawgit.com/noelboss/featherlight/1.7.11/release/featherlight.min.js" type="text/javascript" charset="utf-8"></script>
380-
<script src="//cdn.rawgit.com/noelboss/featherlight/1.7.11/release/featherlight.gallery.min.js" type="text/javascript" charset="utf-8"></script>
379+
<script src="//cdn.rawgit.com/noelboss/featherlight/1.7.12/release/featherlight.min.js" type="text/javascript" charset="utf-8"></script>
380+
<script src="//cdn.rawgit.com/noelboss/featherlight/1.7.12/release/featherlight.gallery.min.js" type="text/javascript" charset="utf-8"></script>
381381
```
382382

383383
Check out the example here: [Gallery with Featherlight](gallery.html)
@@ -439,11 +439,11 @@ It sets the classes `'featherlight-first-slide'` and `'featherlight-last-slide'`
439439

440440
Simply include the extension CSS and JavaScript Files after the regular featherlight files like this:
441441

442-
<link href="//cdn.rawgit.com/noelboss/featherlight/1.7.11/release/featherlight.min.css" type="text/css" rel="stylesheet" />
443-
<link href="//cdn.rawgit.com/noelboss/featherlight/1.7.11/release/featherlight.gallery.min.css" type="text/css" rel="stylesheet" />
442+
<link href="//cdn.rawgit.com/noelboss/featherlight/1.7.12/release/featherlight.min.css" type="text/css" rel="stylesheet" />
443+
<link href="//cdn.rawgit.com/noelboss/featherlight/1.7.12/release/featherlight.gallery.min.css" type="text/css" rel="stylesheet" />
444444
<script src="//code.jquery.com/jquery-latest.js"></script>
445-
<script src="//cdn.rawgit.com/noelboss/featherlight/1.7.11/release/featherlight.min.js" type="text/javascript" charset="utf-8"></script>
446-
<script src="//cdn.rawgit.com/noelboss/featherlight/1.7.11/release/featherlight.gallery.min.js" type="text/javascript" charset="utf-8"></script>
445+
<script src="//cdn.rawgit.com/noelboss/featherlight/1.7.12/release/featherlight.min.js" type="text/javascript" charset="utf-8"></script>
446+
<script src="//cdn.rawgit.com/noelboss/featherlight/1.7.12/release/featherlight.gallery.min.js" type="text/javascript" charset="utf-8"></script>
447447

448448
## Gallery on Mobile Devices
449449
To support mobile/tablet and all touch devices, you will need to include one of the [supported swipe libraries](https://github.com/noelboss/featherlight/wiki/Gallery:-swipe-on-touch-devices). For example, to use `swipe_detect` library, include it in the header:

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "featherlight",
3-
"version": "1.7.11",
3+
"version": "1.7.12",
44
"main": [
55
"release/featherlight.min.js",
66
"release/featherlight.min.css"

featherlight.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "featherlight",
3-
"version": "1.7.11",
3+
"version": "1.7.12",
44
"title": "Featherlight – ultra slim jQuery lightbox",
55
"author": {
66
"name": "Noël Raoul Bossart",

gallery.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ <h1>Featherlight<i>.Gallery.js</i>
106106
<i class="glyphicon glyphicon-eye-open"></i>
107107
github
108108
</a>
109-
<a class="btn btn-lg btn-success" href="https://github.com/noelboss/featherlight/archive/1.7.11.zip">
109+
<a class="btn btn-lg btn-success" href="https://github.com/noelboss/featherlight/archive/1.7.12.zip">
110110
<i class="glyphicon glyphicon-arrow-down"></i>
111-
Download <span>(1.7.11)</span>
111+
Download <span>(1.7.12)</span>
112112
</a>
113113
</div>
114114
</div>

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ <h1>Featherlight<i>.js</i><span> The ultra slim lightbox.</span></h1>
6565
<i class="glyphicon glyphicon-eye-open"></i>
6666
github
6767
</a>
68-
<a class="btn btn-lg btn-success" href="https://github.com/noelboss/featherlight/archive/1.7.11.zip">
68+
<a class="btn btn-lg btn-success" href="https://github.com/noelboss/featherlight/archive/1.7.12.zip">
6969
<i class="glyphicon glyphicon-arrow-down"></i>
70-
Download <span>(1.7.11)</span>
70+
Download <span>(1.7.12)</span>
7171
</a>
7272
</div>
7373
<div class="btn-group">

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"title": "Featherlight \u2013 ultra slim jQuery lightbox",
3-
"version": "1.7.11",
3+
"version": "1.7.12",
44
"author": {
55
"name": "No\u00ebl Raoul Bossart",
66
"url": "http://www.noelboss.com"

release/featherlight.gallery.min.css

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

release/featherlight.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.

release/featherlight.min.css

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

release/featherlight.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.

src/featherlight.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Featherlight – ultra slim jQuery lightbox
3-
* Version 1.7.11 - http://noelboss.github.io/featherlight/
3+
* Version 1.7.12 - http://noelboss.github.io/featherlight/
44
*
55
* Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
66
* MIT Licensed.

src/featherlight.gallery.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Featherlight Gallery – an extension for the ultra slim jQuery lightbox
3-
* Version 1.7.11 - http://noelboss.github.io/featherlight/
3+
* Version 1.7.12 - http://noelboss.github.io/featherlight/
44
*
55
* Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
66
* MIT Licensed.

src/featherlight.gallery.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Featherlight Gallery – an extension for the ultra slim jQuery lightbox
3-
* Version 1.7.11 - http://noelboss.github.io/featherlight/
3+
* Version 1.7.12 - http://noelboss.github.io/featherlight/
44
*
55
* Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
66
* MIT Licensed.

src/featherlight.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* Featherlight - ultra slim jQuery lightbox
3-
* Version 1.7.11 - http://noelboss.github.io/featherlight/
3+
* Version 1.7.12 - http://noelboss.github.io/featherlight/
44
*
55
* Copyright 2017, Noël Raoul Bossart (http://www.noelboss.com)
66
* MIT Licensed.

src/gallery.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ <h1>Featherlight<i>.Gallery.js</i>
108108
</a>
109109
<a class="btn btn-lg btn-success" href="https://github.com/noelboss/featherlight/archive/master.zip">
110110
<i class="glyphicon glyphicon-arrow-down"></i>
111-
Download <span>(1.7.11)</span>
111+
Download <span>(1.7.12)</span>
112112
</a>
113113
</div>
114114
</div>

src/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ <h1>Featherlight<i>.js</i><span> The ultra slim lightbox.</span></h1>
6767
</a>
6868
<a class="btn btn-lg btn-success" href="https://github.com/noelboss/featherlight/archive/master.zip">
6969
<i class="glyphicon glyphicon-arrow-down"></i>
70-
Download <span>(1.7.11)</span>
70+
Download <span>(1.7.12)</span>
7171
</a>
7272
</div>
7373
<div class="btn-group">

0 commit comments

Comments
 (0)