Skip to content

Commit f664f25

Browse files
committed
Fixup license comments.
1 parent 5abf472 commit f664f25

File tree

4 files changed

+42
-34
lines changed

4 files changed

+42
-34
lines changed

lib/utils/boot.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/**
2+
@license
3+
Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
4+
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
5+
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6+
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
7+
Code distributed by Google as part of the polymer project is also
8+
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9+
*/
10+
111
window.JSCompiler_renameProperty = function(prop, obj) { return prop; }
212

313
/** @namespace Polymer */

lib/utils/unresolved.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/**
2+
@license
3+
Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
4+
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
5+
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6+
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
7+
Code distributed by Google as part of the polymer project is also
8+
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9+
*/
10+
111
function resolve() {
212
document.body.removeAttribute('unresolved');
313
}

test/unit/custom-style-import.js

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/**
2+
@license
3+
Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
4+
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
5+
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6+
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
7+
Code distributed by Google as part of the polymer project is also
8+
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9+
*/
10+
111
import './sub/style-import.js';
212
const $_documentContainer = document.createElement('div');
313
$_documentContainer.setAttribute('style', 'display: none;');
@@ -33,19 +43,3 @@ $_documentContainer.innerHTML = `<dom-module id="shared-style">
3343
</custom-style>`;
3444

3545
document.head.appendChild($_documentContainer);
36-
37-
/**
38-
@license
39-
Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
40-
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
41-
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
42-
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
43-
Code distributed by Google as part of the polymer project is also
44-
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
45-
*/
46-
/*
47-
FIXME(polymer-modulizer): the above comments were extracted
48-
from HTML and may be out of place here. Review them and
49-
then delete this comment!
50-
*/
51-
;
Lines changed: 12 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
/**
2+
@license
3+
Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
4+
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
5+
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6+
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
7+
Code distributed by Google as part of the polymer project is also
8+
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
9+
*/
10+
111
const $_documentContainer = document.createElement('div');
212
$_documentContainer.setAttribute('style', 'display: none;');
313

@@ -7,8 +17,8 @@ $_documentContainer.innerHTML = `<dom-module id="shared-styles">
717
border: 4px solid tomato;
818
}
919
</style>
10-
11-
20+
21+
1222
<template>
1323
<style>
1424
#three {
@@ -19,19 +29,3 @@ $_documentContainer.innerHTML = `<dom-module id="shared-styles">
1929
</dom-module>`;
2030

2131
document.head.appendChild($_documentContainer);
22-
23-
/**
24-
@license
25-
Copyright (c) 2017 The Polymer Project Authors. All rights reserved.
26-
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
27-
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
28-
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
29-
Code distributed by Google as part of the polymer project is also
30-
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
31-
*/
32-
/*
33-
FIXME(polymer-modulizer): the above comments were extracted
34-
from HTML and may be out of place here. Review them and
35-
then delete this comment!
36-
*/
37-
;

0 commit comments

Comments
 (0)