Skip to content

Commit

Permalink
Version bump to 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
paulstraw committed Jan 8, 2016
1 parent 8ed665e commit 87d06ae
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/luminous.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }

var VERSION = exports.VERSION = '0.1.2';
var VERSION = exports.VERSION = '0.1.3';

var Luminous = (function () {
function Luminous(trigger) {
Expand Down
2 changes: 1 addition & 1 deletion dist/luminous.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
max-width: 100%;
}
</style>
<script src="dist/luminous.js"></script>
</head>

<body>
Expand All @@ -70,6 +69,7 @@ <h1>Luminous Demo</h1>
<img src="https://assets.imgix.net/presskit/imgix-presskit.pdf?page=3&amp;fm=png&amp;w=320&amp;dpr=2" width="160" height="60" alt="imgix">
</a>

<script src="dist/luminous.js"></script>
<script>
new Luminous(document.querySelector('a'));
</script>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "luminous-lightbox",
"version": "0.1.2",
"version": "0.1.3",
"description": "A simple, lightweight, no-dependencies JavaScript image lightbox.",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/js/Luminous.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { isDOMElement } from './util/dom';
import injectBaseStylesheet from './injectBaseStylesheet';
import Lightbox from './Lightbox';

export const VERSION = '0.1.2';
export const VERSION = '0.1.3';

export default class Luminous {
constructor(trigger, options = {}) {
Expand Down

0 comments on commit 87d06ae

Please sign in to comment.