Skip to content

Commit

Permalink
Release 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mistic100 committed Mar 7, 2018
2 parents c08d4e3 + a607ff2 commit 2602022
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 11 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ node_js:
before_install:
- npm install -g grunt-cli
- npm install -g bower
before_script:
- bower install
2 changes: 1 addition & 1 deletion dist/photo-sphere-viewer.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Photo Sphere Viewer 3.3.0
* Photo Sphere Viewer 3.3.1
* Copyright (c) 2014-2015 Jérémy Heleine
* Copyright (c) 2015-2018 Damien "Mistic" Sorel
* Licensed under MIT (http://opensource.org/licenses/MIT)
Expand Down
5 changes: 2 additions & 3 deletions dist/photo-sphere-viewer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Photo Sphere Viewer 3.3.0
* Photo Sphere Viewer 3.3.1
* Copyright (c) 2014-2015 Jérémy Heleine
* Copyright (c) 2015-2018 Damien "Mistic" Sorel
* Licensed under MIT (http://opensource.org/licenses/MIT)
Expand Down Expand Up @@ -463,7 +463,7 @@ function PhotoSphereViewer(options) {
this._bindEvents();

// load panorama
if (this.config.autoload) {
if (this.config.panorama) {
this.load();
}

Expand Down Expand Up @@ -1358,7 +1358,6 @@ PhotoSphereViewer.DEFAULTS = {
panorama: null,
container: null,
caption: null,
autoload: true,
usexmpdata: true,
pano_data: null,
webgl: true,
Expand Down
2 changes: 1 addition & 1 deletion dist/photo-sphere-viewer.min.css

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

4 changes: 2 additions & 2 deletions dist/photo-sphere-viewer.min.js

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "photo-sphere-viewer",
"version": "3.3.0",
"version": "3.3.1",
"authors": [
{
"name": "Jérémy Heleine",
Expand Down Expand Up @@ -57,7 +57,6 @@
"url": "git://github.com/mistic100/Photo-Sphere-Viewer.git"
},
"scripts": {
"postinstall": "bower install",
"test": "grunt test",
"start": "grunt serve"
}
Expand Down
1 change: 0 additions & 1 deletion src/js/PhotoSphereViewer.defaults.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ PhotoSphereViewer.DEFAULTS = {
panorama: null,
container: null,
caption: null,
autoload: true,
usexmpdata: true,
pano_data: null,
webgl: true,
Expand Down
2 changes: 1 addition & 1 deletion src/js/PhotoSphereViewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ function PhotoSphereViewer(options) {
this._bindEvents();

// load panorama
if (this.config.autoload) {
if (this.config.panorama) {
this.load();
}

Expand Down

0 comments on commit 2602022

Please sign in to comment.