Skip to content

Commit

Permalink
chore(all): prepare release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Dec 20, 2017
1 parent 3bacbb8 commit c60c394
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-pal-browser",
"version": "1.3.0",
"version": "1.3.1",
"description": "The browser-specific implementation of Aurelia's platform abstraction layer.",
"keywords": [
"aurelia",
Expand Down
6 changes: 5 additions & 1 deletion dist/amd/aurelia-pal-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,11 @@ define(['exports', 'aurelia-pal'], function (exports, _aureliaPal) {
var _FEATURE = exports._FEATURE = {
shadowDOM: !!HTMLElement.prototype.attachShadow,
scopedCSS: 'scoped' in document.createElement('style'),
htmlTemplateElement: 'content' in document.createElement('template'),
htmlTemplateElement: function () {
var d = document.createElement('div');
d.innerHTML = '<template></template>';
return 'content' in d.children[0];
}(),
mutationObserver: !!(window.MutationObserver || window.WebKitMutationObserver),
ensureHTMLTemplateElement: function ensureHTMLTemplateElement(t) {
return t;
Expand Down
6 changes: 5 additions & 1 deletion dist/aurelia-pal-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,11 @@ if (Element && !Element.prototype.matches) {
export const _FEATURE = {
shadowDOM: !!HTMLElement.prototype.attachShadow,
scopedCSS: 'scoped' in document.createElement('style'),
htmlTemplateElement: 'content' in document.createElement('template'),
htmlTemplateElement: (function() {
let d = document.createElement('div');
d.innerHTML = '<template></template>';
return 'content' in d.children[0];
})(),
mutationObserver: !!(window.MutationObserver || window.WebKitMutationObserver),
ensureHTMLTemplateElement: t => t
};
Expand Down
6 changes: 5 additions & 1 deletion dist/commonjs/aurelia-pal-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,11 @@ if (Element && !Element.prototype.matches) {
var _FEATURE = exports._FEATURE = {
shadowDOM: !!HTMLElement.prototype.attachShadow,
scopedCSS: 'scoped' in document.createElement('style'),
htmlTemplateElement: 'content' in document.createElement('template'),
htmlTemplateElement: function () {
var d = document.createElement('div');
d.innerHTML = '<template></template>';
return 'content' in d.children[0];
}(),
mutationObserver: !!(window.MutationObserver || window.WebKitMutationObserver),
ensureHTMLTemplateElement: function ensureHTMLTemplateElement(t) {
return t;
Expand Down
6 changes: 5 additions & 1 deletion dist/es2015/aurelia-pal-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,11 @@ if (Element && !Element.prototype.matches) {
export const _FEATURE = {
shadowDOM: !!HTMLElement.prototype.attachShadow,
scopedCSS: 'scoped' in document.createElement('style'),
htmlTemplateElement: 'content' in document.createElement('template'),
htmlTemplateElement: function () {
let d = document.createElement('div');
d.innerHTML = '<template></template>';
return 'content' in d.children[0];
}(),
mutationObserver: !!(window.MutationObserver || window.WebKitMutationObserver),
ensureHTMLTemplateElement: t => t
};
Expand Down
6 changes: 5 additions & 1 deletion dist/native-modules/aurelia-pal-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,11 @@ if (Element && !Element.prototype.matches) {
export var _FEATURE = {
shadowDOM: !!HTMLElement.prototype.attachShadow,
scopedCSS: 'scoped' in document.createElement('style'),
htmlTemplateElement: 'content' in document.createElement('template'),
htmlTemplateElement: function () {
var d = document.createElement('div');
d.innerHTML = '<template></template>';
return 'content' in d.children[0];
}(),
mutationObserver: !!(window.MutationObserver || window.WebKitMutationObserver),
ensureHTMLTemplateElement: function ensureHTMLTemplateElement(t) {
return t;
Expand Down
6 changes: 5 additions & 1 deletion dist/system/aurelia-pal-browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,11 @@ System.register(['aurelia-pal'], function (_export, _context) {
_export('_FEATURE', _FEATURE = {
shadowDOM: !!HTMLElement.prototype.attachShadow,
scopedCSS: 'scoped' in document.createElement('style'),
htmlTemplateElement: 'content' in document.createElement('template'),
htmlTemplateElement: function () {
var d = document.createElement('div');
d.innerHTML = '<template></template>';
return 'content' in d.children[0];
}(),
mutationObserver: !!(window.MutationObserver || window.WebKitMutationObserver),
ensureHTMLTemplateElement: function ensureHTMLTemplateElement(t) {
return t;
Expand Down
10 changes: 10 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="1.3.1"></a>
## [1.3.1](https://github.com/aurelia/pal-browser/compare/1.3.0...v1.3.1) (2017-12-20)


### Bug Fixes

* **html-template-element:** fix unable to get property querySelectorAll error when using webcomponents-lite in IE11 ([#27](https://github.com/aurelia/pal-browser/issues/27)) ([9e4b62f](https://github.com/aurelia/pal-browser/commit/9e4b62f))



<a name="1.3.0"></a>
# [1.3.0](https://github.com/aurelia/pal-browser/compare/1.2.1...v1.3.0) (2017-08-22)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-pal-browser",
"version": "1.3.0",
"version": "1.3.1",
"description": "The browser-specific implementation of Aurelia's platform abstraction layer.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit c60c394

Please sign in to comment.