Skip to content

Commit

Permalink
build: release 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fengyuanchen committed Sep 14, 2019
1 parent 81e9637 commit e89e2ce
Show file tree
Hide file tree
Showing 9 changed files with 1,643 additions and 1,709 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.1.3 (Sep 14, 2019)

- Continue counting down only when the current tab is visible (#37).

## 1.1.2 (Apr 16, 2019)

- Add missing properties for the `progress` event (#34).
Expand Down
8 changes: 5 additions & 3 deletions dist/vue-countdown.common.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
* vue-countdown v1.1.2
* vue-countdown v1.1.3
* https://fengyuanchen.github.io/vue-countdown
*
* Copyright 2018-present Chen Fengyuan
* Released under the MIT license
*
* Date: 2019-04-16T11:53:29.768Z
* Date: 2019-09-14T04:14:37.456Z
*/

'use strict';
Expand Down Expand Up @@ -231,7 +231,9 @@ var index = {
this.$emit('start');
}

this.continue();
if (document.visibilityState === 'visible') {
this.continue();
}
},

/**
Expand Down
8 changes: 5 additions & 3 deletions dist/vue-countdown.esm.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
* vue-countdown v1.1.2
* vue-countdown v1.1.3
* https://fengyuanchen.github.io/vue-countdown
*
* Copyright 2018-present Chen Fengyuan
* Released under the MIT license
*
* Date: 2019-04-16T11:53:29.768Z
* Date: 2019-09-14T04:14:37.456Z
*/

var MILLISECONDS_SECOND = 1000;
Expand Down Expand Up @@ -229,7 +229,9 @@ var index = {
this.$emit('start');
}

this.continue();
if (document.visibilityState === 'visible') {
this.continue();
}
},

/**
Expand Down
8 changes: 5 additions & 3 deletions dist/vue-countdown.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
* vue-countdown v1.1.2
* vue-countdown v1.1.3
* https://fengyuanchen.github.io/vue-countdown
*
* Copyright 2018-present Chen Fengyuan
* Released under the MIT license
*
* Date: 2019-04-16T11:53:29.768Z
* Date: 2019-09-14T04:14:37.456Z
*/

(function (global, factory) {
Expand Down Expand Up @@ -235,7 +235,9 @@
this.$emit('start');
}

this.continue();
if (document.visibilityState === 'visible') {
this.continue();
}
},

/**
Expand Down
6 changes: 3 additions & 3 deletions dist/vue-countdown.min.js

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

4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<div class="container">
<div class="row">
<div class="col-md">
<h1>vue-countdown <small class="h6">v1.1.2</small></h1>
<h1>vue-countdown <small class="h6">v1.1.3</small></h1>
<p class="lead">Countdown component for Vue.js.</p>
</div>
<div class="col-md">
Expand Down Expand Up @@ -121,7 +121,7 @@ <h6>JavaScript:</h6>
</div>
</footer>

<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js"></script>
<script src="https://unpkg.com/vue@2/dist/vue.min.js"></script>
<script src="https://unpkg.com/[email protected]/highlight.pack.js"></script>
Expand Down
8 changes: 5 additions & 3 deletions docs/js/vue-countdown.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*!
* vue-countdown v1.1.2
* vue-countdown v1.1.3
* https://fengyuanchen.github.io/vue-countdown
*
* Copyright 2018-present Chen Fengyuan
* Released under the MIT license
*
* Date: 2019-04-16T11:53:29.768Z
* Date: 2019-09-14T04:14:37.456Z
*/

(function (global, factory) {
Expand Down Expand Up @@ -235,7 +235,9 @@
this.$emit('start');
}

this.continue();
if (document.visibilityState === 'visible') {
this.continue();
}
},

/**
Expand Down
Loading

0 comments on commit e89e2ce

Please sign in to comment.