Skip to content
This repository has been archived by the owner on Sep 20, 2019. It is now read-only.

Commit

Permalink
Merge pull request #284 from webcomponents/ie10-mo
Browse files Browse the repository at this point in the history
Prepare for 0.6.1 build.
  • Loading branch information
addyosmani committed Apr 13, 2015
2 parents 787ca6c + ed39ec0 commit ef29f20
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webcomponentsjs",
"main": "webcomponents.js",
"version": "0.6.0",
"version": "0.6.1",
"homepage": "http://webcomponents.org",
"authors": [
"The Polymer Authors"
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": "webcomponents.js",
"version": "0.6.0",
"version": "0.6.1",
"description": "webcomponents.js",
"main": "webcomponents.js",
"directories": {
Expand Down
1 change: 1 addition & 0 deletions src/CustomElements/CustomElements.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ var file = 'CustomElements.js';

var modules = [
'../WeakMap/WeakMap.js',
'../MutationObserver/MutationObserver.js',
'base.js',
'traverse.js',
'observe.js',
Expand Down
1 change: 1 addition & 0 deletions src/CustomElements/build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[
"../WeakMap/WeakMap.js",
"../MutationObserver/MutationObserver.js",
"base.js",
"traverse.js",
"observe.js",
Expand Down
1 change: 1 addition & 0 deletions src/HTMLImports/HTMLImports.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ var file = 'HTMLImports.js';

var modules = [
'../WeakMap/WeakMap.js',
'../MutationObserver/MutationObserver.js',
'base.js',
'module.js',
'path.js',
Expand Down
1 change: 1 addition & 0 deletions src/HTMLImports/build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[
"../WeakMap/WeakMap.js",
"../MutationObserver/MutationObserver.js",
"base.js",
"module.js",
"path.js",
Expand Down
8 changes: 4 additions & 4 deletions src/WebComponents/build/boot.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ window.WebComponents = window.WebComponents || {};

// process flags
(function(scope){

// import
var flags = scope.flags || {};

var file = 'webcomponents.js';
var script = document.querySelector('script[src*="' + file + '"]');

Expand All @@ -34,7 +34,7 @@ window.WebComponents = window.WebComponents || {};
}
}
// log flags
if (flags.log) {
if (flags.log && flags.log.split) {
var parts = flags.log.split(',');
flags.log = {};
parts.forEach(function(f) {
Expand All @@ -48,7 +48,7 @@ window.WebComponents = window.WebComponents || {};
// Determine default settings.
// If any of these flags match 'native', then force native ShadowDOM; any
// other truthy value, or failure to detect native
// ShadowDOM, results in polyfill
// ShadowDOM, results in polyfill
flags.shadow = (flags.shadow || flags.shadowdom || flags.polyfill);
if (flags.shadow === 'native') {
flags.shadow = false;
Expand Down

0 comments on commit ef29f20

Please sign in to comment.