Skip to content

Commit

Permalink
rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
jamuhl committed Apr 3, 2019
1 parent a8c8dd2 commit e041e1e
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
### 15.0.9

- IE: <=IE10 fix (unable to call parent constructor) [1227](https://github.com/i18next/i18next/pull/1227)

### 15.0.8

- typescript: adding init function to 3rdParty module typings and enforcing type property [1223](https://github.com/i18next/i18next/pull/1223)
Expand Down
8 changes: 8 additions & 0 deletions i18next.js
Expand Up @@ -481,6 +481,8 @@
_classCallCheck(this, ResourceStore);

_this = _possibleConstructorReturn(this, _getPrototypeOf(ResourceStore).call(this));
EventEmitter.call(_assertThisInitialized(_assertThisInitialized(_this))); // <=IE10 fix (unable to call parent constructor)

_this.data = data || {};
_this.options = options;

Expand Down Expand Up @@ -652,6 +654,8 @@
_classCallCheck(this, Translator);

_this = _possibleConstructorReturn(this, _getPrototypeOf(Translator).call(this));
EventEmitter.call(_assertThisInitialized(_assertThisInitialized(_this))); // <=IE10 fix (unable to call parent constructor)

copy(['resourceStore', 'languageUtils', 'pluralResolver', 'interpolator', 'backendConnector', 'i18nFormat'], services, _assertThisInitialized(_assertThisInitialized(_this)));
_this.options = options;

Expand Down Expand Up @@ -1577,6 +1581,8 @@
_classCallCheck(this, Connector);

_this = _possibleConstructorReturn(this, _getPrototypeOf(Connector).call(this));
EventEmitter.call(_assertThisInitialized(_assertThisInitialized(_this))); // <=IE10 fix (unable to call parent constructor)

_this.backend = backend;
_this.store = store;
_this.languageUtils = services.languageUtils;
Expand Down Expand Up @@ -1915,6 +1921,8 @@
_classCallCheck(this, I18n);

_this = _possibleConstructorReturn(this, _getPrototypeOf(I18n).call(this));
EventEmitter.call(_assertThisInitialized(_assertThisInitialized(_this))); // <=IE10 fix (unable to call parent constructor)

_this.options = transformOptions(options);
_this.services = {};
_this.logger = baseLogger;
Expand Down
2 changes: 1 addition & 1 deletion i18next.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "i18next",
"version": "15.0.8",
"version": "15.0.9",
"description": "i18next internationalization framework",
"main": "./index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit e041e1e

Please sign in to comment.