Skip to content

Commit f56ae10

Browse files
committed
build: release 1.2.1
1 parent 4adaa69 commit f56ae10

File tree

7 files changed

+207
-413
lines changed

7 files changed

+207
-413
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Changelog
22

3-
## next
3+
## 1.2.1 (Oct 20, 2018)
44

55
- Improve viewer instance storage to avoid side effect.
6+
- Fix parameter error of `Object.assign` in iOS devices.
67

78
## 1.2.0 (Jul 15, 2018)
89

docs/css/viewer.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*!
2-
* Viewer.js v1.2.0
2+
* Viewer.js v1.2.1
33
* https://fengyuanchen.github.io/viewerjs
44
*
55
* Copyright 2015-present Chen Fengyuan
66
* Released under the MIT license
77
*
8-
* Date: 2018-07-15T10:09:17.532Z
8+
* Date: 2018-10-20T09:27:11.473Z
99
*/
1010

1111
.viewer-zoom-in::before,

docs/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta name="description" content="JavaScript image viewer.">
88
<meta name="author" content="Chen Fengyuan">
99
<title>Viewer.js</title>
10-
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css">
10+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
1111
<link rel="stylesheet" href="css/viewer.css">
1212
<link rel="stylesheet" href="css/main.css">
1313
</head>
@@ -44,7 +44,7 @@
4444
<div class="container">
4545
<div class="row">
4646
<div class="col-md">
47-
<h1>Viewer.js <small class="h6">v1.2.0</small></h1>
47+
<h1>Viewer.js <small class="h6">v1.2.1</small></h1>
4848
<p class="lead">JavaScript image viewer.</p>
4949
</div>
5050
<div class="col-md">
@@ -277,7 +277,7 @@ <h3>Methods</h3>
277277

278278
<!-- Scripts -->
279279
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
280-
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.2/js/bootstrap.bundle.min.js"></script>
280+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.bundle.min.js"></script>
281281
<script src="https://fengyuanchen.github.io/js/common.js"></script>
282282
<script src="js/viewer.js"></script>
283283
<script src="js/main.js"></script>

docs/js/main.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
window.onload = function () {
2-
32
'use strict';
43

54
var Viewer = window.Viewer;

0 commit comments

Comments
 (0)