Skip to content
This repository was archived by the owner on Feb 11, 2021. It is now read-only.

Commit ba001fd

Browse files
committed
fix license headers
1 parent 1d551ce commit ba001fd

File tree

10 files changed

+48
-1
lines changed

10 files changed

+48
-1
lines changed

samples/paint/index.html

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<!doctype html>
2+
<!--
3+
Copyright 2012-2014 The Polymer Authors. All rights reserved.
4+
Use of this source code is governed by a BSD-style
5+
license that can be found in the LICENSE file.
6+
-->
27
<head>
38
<meta name="viewport" content="width=device-width">
49
<meta charset="UTF-8">

samples/paint/paint.js

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* @license
3+
* Copyright 2014 The Polymer Authors. All rights reserved.
4+
* Use of this source code is governed by a BSD-style
5+
* license that can be found in the LICENSE file.
6+
*/
7+
18
// shim layer with setTimeout fallback
29
window.requestAnimFrame = (function(){
310
return window.requestAnimationFrame ||

samples/scroller/index.html

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<!DOCTYPE html>
2+
<!--
3+
Copyright 2012-2014 The Polymer Authors. All rights reserved.
4+
Use of this source code is governed by a BSD-style
5+
license that can be found in the LICENSE file.
6+
-->
27
<html>
38
<head>
49
<meta charset="UTF-8">

samples/shadow/index.html

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<!DOCTYPE html>
2+
<!--
3+
Copyright 2012-2014 The Polymer Authors. All rights reserved.
4+
Use of this source code is governed by a BSD-style
5+
license that can be found in the LICENSE file.
6+
-->
27
<script src="../../pointerevents.js"></script>
38
<style>
49
#host {

samples/simple/index.html

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<!DOCTYPE html>
2+
<!--
3+
Copyright 2012-2014 The Polymer Authors. All rights reserved.
4+
Use of this source code is governed by a BSD-style
5+
license that can be found in the LICENSE file.
6+
-->
27
<html>
38
<head>
49
<meta charset="UTF-8">

samples/spaceship/index.html

100755100644
File mode changed.

samples/spaceship/js/BulletSebs.js

100755100644
+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/** @license
2+
* Copyright 2012-2014 The Polymer Authors. All rights reserved.
3+
* Use of this source code is governed by a BSD-style
4+
* license that can be found in the LICENSE file.
5+
*/
16
Bullet = function(x, y, angle) {
27

38
var speed = 10;
@@ -46,4 +51,4 @@ Bullet = function(x, y, angle) {
4651

4752
this.reset(x,y,angle);
4853

49-
};
54+
};

samples/spaceship/js/ShipMovingTouch.js

100755100644
+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/** @license
2+
* Copyright 2012-2014 The Polymer Authors. All rights reserved.
3+
* Use of this source code is governed by a BSD-style
4+
* license that can be found in the LICENSE file.
5+
*/
16
ShipMoving = function(x,y) {
27

38

samples/spaceship/js/Vector2.js

100755100644
+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/** @license
2+
* Copyright 2012-2014 The Polymer Authors. All rights reserved.
3+
* Use of this source code is governed by a BSD-style
4+
* license that can be found in the LICENSE file.
5+
*/
16

27
var Vector2 = function (x,y) {
38

samples/tracker/index.html

100755100644
+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<!doctype html>
2+
<!--
3+
Copyright 2012-2014 The Polymer Authors. All rights reserved.
4+
Use of this source code is governed by a BSD-style
5+
license that can be found in the LICENSE file.
6+
-->
27
<html lang=en>
38
<head>
49
<meta charset=utf-8>

0 commit comments

Comments
 (0)