@angular/platform-browser 8.0.3 → 8.1.0-beta.0

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,5 +1,5 @@
1
1
  /**
2
- * @license Angular v8.0.3
2
+ * @license Angular v8.1.0-beta.0
3
3
  * (c) 2010-2019 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v8.0.3
2
+ * @license Angular v8.1.0-beta.0
3
3
  * (c) 2010-2019 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v8.0.3
2
+ * @license Angular v8.1.0-beta.0
3
3
  * (c) 2010-2019 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1100,7 +1100,7 @@ var DefaultDomRenderer2 = /** @class */ (function () {
1100
1100
  DefaultDomRenderer2.prototype.nextSibling = function (node) { return node.nextSibling; };
1101
1101
  DefaultDomRenderer2.prototype.setAttribute = function (el, name, value, namespace) {
1102
1102
  if (namespace) {
1103
- name = namespace + ":" + name;
1103
+ name = namespace + ':' + name;
1104
1104
  // TODO(benlesh): Ivy may cause issues here because it's passing around
1105
1105
  // full URIs for namespaces, therefore this lookup will fail.
1106
1106
  var namespaceUri = NAMESPACE_URIS[namespace];
@@ -2503,7 +2503,7 @@ var By = /** @class */ (function () {
2503
2503
  /**
2504
2504
  * @publicApi
2505
2505
  */
2506
- var VERSION = new Version('8.0.3');
2506
+ var VERSION = new Version('8.1.0-beta.0');
2507
2507
 
2508
2508
  /**
2509
2509
  * @license