Skip to content

Commit

Permalink
bump to 0.2.86
Browse files Browse the repository at this point in the history
  • Loading branch information
towerz committed Jan 17, 2018
1 parent fdba49c commit 1994866
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion bower.json
@@ -1,7 +1,7 @@
{
"name": "clappr",
"description": "An extensible media player for the web",
"version": "0.2.85",
"version": "0.2.86",
"homepage": "https://github.com/clappr/clappr",
"authors": [
"Globo.com"
Expand Down
10 changes: 5 additions & 5 deletions dist/clappr.js
Expand Up @@ -6546,7 +6546,7 @@ var _clapprZepto2 = _interopRequireDefault(_clapprZepto);

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

var version = "0.2.85"; // Copyright 2014 Globo.com Player authors. All rights reserved.
var version = "0.2.86"; // Copyright 2014 Globo.com Player authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

Expand Down Expand Up @@ -6853,7 +6853,7 @@ var Player = function (_BaseObject) {
// if user iteraction is not allowed ensure keyboard shortcuts are disabled
_this.options.disableKeyboardShortcuts = true;
}
_this._registerOptionEventListeners();
_this._registerOptionEventListeners(_this.options.events);
_this._coreFactory = new _core_factory2.default(_this);
_this.playerInfo = _player_info2.default.getInstance(_this.options.playerId);
_this.playerInfo.currentSize = { width: options.width, height: options.height };
Expand Down Expand Up @@ -6920,8 +6920,8 @@ var Player = function (_BaseObject) {
Player.prototype._registerOptionEventListeners = function _registerOptionEventListeners() {
var _this2 = this;

var events = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var newEvents = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var newEvents = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var events = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};

(0, _keys2.default)(events).forEach(function (userEvent) {
var eventType = _this2.eventsMapping[userEvent];
Expand Down Expand Up @@ -7211,7 +7211,7 @@ var Player = function (_BaseObject) {
Player.prototype.configure = function configure() {
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};

this._registerOptionEventListeners(this.options.events, options.events);
this._registerOptionEventListeners(options.events, this.options.events);
this.core.configure(options);
return this;
};
Expand Down
2 changes: 1 addition & 1 deletion dist/clappr.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/clappr.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/clappr.min.js.map

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/clappr.plainhtml5.js

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

2 changes: 1 addition & 1 deletion dist/clappr.plainhtml5.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/clappr.plainhtml5.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/clappr.plainhtml5.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "clappr",
"version": "0.2.85",
"version": "0.2.86",
"description": "An extensible media player for the web",
"main": "./dist/clappr.js",
"scripts": {
Expand Down

0 comments on commit 1994866

Please sign in to comment.