ember-source 4.7.0-alpha.1 → 4.7.0-alpha.2

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.
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "4.7.0-alpha.1",
2
+ "version": "4.7.0-alpha.2",
3
3
  "buildType": "tag",
4
- "SHA": "f9430f1c4a69b6b37c3f42efb74da4334fc481d7",
5
- "assetPath": "/tag/shas/f9430f1c4a69b6b37c3f42efb74da4334fc481d7.tgz"
4
+ "SHA": "2be466a98bad34764b4dd3ef42fe57e5af57e66d",
5
+ "assetPath": "/tag/shas/2be466a98bad34764b4dd3ef42fe57e5af57e66d.tgz"
6
6
  }
@@ -6,7 +6,7 @@
6
6
  * Portions Copyright 2008-2011 Apple Inc. All rights reserved.
7
7
  * @license Licensed under MIT license
8
8
  * See https://raw.github.com/emberjs/ember.js/master/LICENSE
9
- * @version 4.7.0-alpha.1
9
+ * @version 4.7.0-alpha.2
10
10
  */
11
11
 
12
12
  /* eslint-disable no-var */
@@ -112,7 +112,7 @@ define("@ember/-internals/browser-environment/index", ["exports"], function (_ex
112
112
  Object.defineProperty(_exports, "__esModule", {
113
113
  value: true
114
114
  });
115
- _exports.window = _exports.userAgent = _exports.location = _exports.isIE = _exports.isFirefox = _exports.isChrome = _exports.history = _exports.hasDOM = void 0;
115
+ _exports.window = _exports.userAgent = _exports.location = _exports.isFirefox = _exports.isChrome = _exports.history = _exports.hasDOM = void 0;
116
116
  // check if window exists and actually is the global
117
117
  var hasDom = typeof self === 'object' && self !== null && self.Object === Object && typeof Window !== 'undefined' && self.constructor === Window && typeof document === 'object' && document !== null && self.document === document && typeof location === 'object' && location !== null && self.location === location && typeof history === 'object' && history !== null && self.history === history && typeof navigator === 'object' && navigator !== null && self.navigator === navigator && typeof navigator.userAgent === 'string';
118
118
  _exports.hasDOM = hasDom;
@@ -126,10 +126,8 @@ define("@ember/-internals/browser-environment/index", ["exports"], function (_ex
126
126
  _exports.userAgent = userAgent;
127
127
  var isChrome = hasDom ? typeof chrome === 'object' && !(typeof opera === 'object') : false;
128
128
  _exports.isChrome = isChrome;
129
- var isFirefox = hasDom ? typeof InstallTrigger !== 'undefined' : false;
129
+ var isFirefox = hasDom ? /Firefox|FxiOS/.test(userAgent) : false;
130
130
  _exports.isFirefox = isFirefox;
131
- var isIE = hasDom ? typeof MSInputMethodContext !== 'undefined' && typeof documentMode !== 'undefined' : false;
132
- _exports.isIE = isIE;
133
131
  });
134
132
  define("@ember/-internals/environment/index", ["exports"], function (_exports) {
135
133
  "use strict";
@@ -17639,7 +17637,7 @@ define("ember-template-compiler/lib/plugins/assert-against-attrs", ["exports", "
17639
17637
 
17640
17638
  PathExpression(node) {
17641
17639
  if (isAttrs(node, stack[stack.length - 1])) {
17642
- var path = b.path(node.original.substr(6));
17640
+ var path = b.path(node.original.substring(6));
17643
17641
  (true && !(node.this !== false) && (0, _debug.assert)("Using {{attrs}} to reference named arguments is not supported. {{attrs." + path.original + "}} should be updated to {{@" + path.original + "}}. " + (0, _calculateLocationDisplay.default)(moduleName, node.loc), node.this !== false));
17644
17642
  }
17645
17643
  }
@@ -18739,7 +18737,7 @@ define("ember/version", ["exports"], function (_exports) {
18739
18737
  value: true
18740
18738
  });
18741
18739
  _exports.default = void 0;
18742
- var _default = "4.7.0-alpha.1";
18740
+ var _default = "4.7.0-alpha.2";
18743
18741
  _exports.default = _default;
18744
18742
  });
18745
18743
  define("simple-html-tokenizer", ["exports"], function (_exports) {