ngx-bootstrap 1.9.2 → 1.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,13 @@
1
+ <a name="1.9.3"></a>
2
+ ## [1.9.3](https://github.com/valor-software/ngx-bootstrap/compare/v1.9.2...v1.9.3) (2017-09-08)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * **core:** workaround on angular issue with isProdMode ([#2603](https://github.com/valor-software/ngx-bootstrap/issues/2603)) ([f9665ac](https://github.com/valor-software/ngx-bootstrap/commit/f9665ac)), closes [#2596](https://github.com/valor-software/ngx-bootstrap/issues/2596)
8
+
9
+
10
+
1
11
  <a name="1.9.2"></a>
2
12
  ## [1.9.2](https://github.com/valor-software/ngx-bootstrap/compare/v1.9.1...v1.9.2) (2017-09-07)
3
13
 
@@ -10049,9 +10049,9 @@ var TooltipDirective = (function () {
10049
10049
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__angular_core___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__angular_core__);
10050
10050
 
10051
10051
  var _messagesHash = {};
10052
- var _hideMsg = !Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["isDevMode"])() || typeof console === 'undefined' || !console.warn;
10052
+ var _hideMsg = typeof console === 'undefined' || !console.warn;
10053
10053
  function warnOnce(msg) {
10054
- if (_hideMsg || msg in _messagesHash) {
10054
+ if (!Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["isDevMode"])() || _hideMsg || msg in _messagesHash) {
10055
10055
  return;
10056
10056
  }
10057
10057
  _messagesHash[msg] = true;