Skip to content

Commit

Permalink
[build] 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
toxic-johann committed Jan 2, 2018
1 parent 9799f8c commit 6e0455d
Show file tree
Hide file tree
Showing 9 changed files with 71 additions and 340 deletions.
2 changes: 1 addition & 1 deletion bundle-size/common.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundle-size/es.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundle-size/min.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bundle-size/umd.html

Large diffs are not rendered by default.

383 changes: 56 additions & 327 deletions lib/index.browser.js

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/**
* chimee v0.8.0
* chimee v0.8.1
* (c) 2017 toxic-johann
* Released under MIT
*/
Expand Down Expand Up @@ -1718,7 +1718,7 @@ var Plugin = (_dec$3 = toxicDecorators.autobindClass(), _dec$3(_class$3 = functi
var _this = _possibleConstructorReturn(this, (Plugin.__proto__ || _Object$getPrototypeOf(Plugin)).call(this));

_this.destroyed = false;
_this.VERSION = '0.8.0';
_this.VERSION = '0.8.1';
_this.__operable = true;
_this.__level = 0;

Expand Down Expand Up @@ -2390,6 +2390,7 @@ var Dom = (_dec$6 = toxicDecorators.waituntil('__dispatcher.videoConfigReady'),
value: function _autoFocusToVideo(element) {
var remove = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;

if (!chimeeHelper.isElement(element)) return;
(remove ? chimeeHelper.removeEvent : chimeeHelper.addEvent)(element, 'mouseup', this._focusToVideo, false, true);
(remove ? chimeeHelper.removeEvent : chimeeHelper.addEvent)(element, 'touchend', this._focusToVideo, false, true);
}
Expand Down Expand Up @@ -3518,7 +3519,7 @@ var Chimee = (_dec = toxicDecorators.autobindClass(), _dec(_class = (_class2 = (
}), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, 'version', [toxicDecorators.frozen], {
enumerable: true,
initializer: function initializer() {
return '0.8.0';
return '0.8.1';
}
}), _descriptor3 = _applyDecoratedDescriptor(_class2.prototype, 'config', [toxicDecorators.frozen], {
enumerable: true,
Expand Down
2 changes: 1 addition & 1 deletion lib/index.min.js

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions lib/index.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/**
* chimee v0.8.0
* chimee v0.8.1
* (c) 2017 toxic-johann
* Released under MIT
*/
Expand Down Expand Up @@ -1714,7 +1714,7 @@ var Plugin = (_dec$3 = autobindClass(), _dec$3(_class$3 = function (_VideoWrappe
var _this = _possibleConstructorReturn(this, (Plugin.__proto__ || _Object$getPrototypeOf(Plugin)).call(this));

_this.destroyed = false;
_this.VERSION = '0.8.0';
_this.VERSION = '0.8.1';
_this.__operable = true;
_this.__level = 0;

Expand Down Expand Up @@ -2386,6 +2386,7 @@ var Dom = (_dec$6 = waituntil('__dispatcher.videoConfigReady'), _dec2$4 = before
value: function _autoFocusToVideo(element) {
var remove = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;

if (!isElement(element)) return;
(remove ? removeEvent : addEvent)(element, 'mouseup', this._focusToVideo, false, true);
(remove ? removeEvent : addEvent)(element, 'touchend', this._focusToVideo, false, true);
}
Expand Down Expand Up @@ -3514,7 +3515,7 @@ var Chimee = (_dec = autobindClass(), _dec(_class = (_class2 = (_temp = _class3
}), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, 'version', [frozen], {
enumerable: true,
initializer: function initializer() {
return '0.8.0';
return '0.8.1';
}
}), _descriptor3 = _applyDecoratedDescriptor(_class2.prototype, 'config', [frozen], {
enumerable: true,
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chimee",
"version": "0.8.0",
"version": "0.8.1",
"description": "a video-player aims to bring wonderful experience on browser",
"main": "lib/index.js",
"module": "lib/index.mjs",
Expand All @@ -11,7 +11,7 @@
"prepush": "npm run test",
"prepublishOnly": "npm t && pkg-ok",
"postmerge": "sh tool/auto-npm-install.sh",
"test": "jest --coverage",
"test": "jest --coverage && node env-check.js",
"unit": "jest --coverage --watch",
"lint": "eslint . --fix && flow",
"flow": "flow",
Expand Down

0 comments on commit 6e0455d

Please sign in to comment.