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

Commit

Permalink
fix license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Feb 19, 2014
1 parent 1d551ce commit ba001fd
Show file tree
Hide file tree
Showing 10 changed files with 48 additions and 1 deletion.
5 changes: 5 additions & 0 deletions samples/paint/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<!doctype html>
<!--
Copyright 2012-2014 The Polymer Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<head>
<meta name="viewport" content="width=device-width">
<meta charset="UTF-8">
Expand Down
7 changes: 7 additions & 0 deletions samples/paint/paint.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
/**
* @license
* Copyright 2014 The Polymer Authors. All rights reserved.
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file.
*/

// shim layer with setTimeout fallback
window.requestAnimFrame = (function(){
return window.requestAnimationFrame ||
Expand Down
5 changes: 5 additions & 0 deletions samples/scroller/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<!DOCTYPE html>
<!--
Copyright 2012-2014 The Polymer Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<html>
<head>
<meta charset="UTF-8">
Expand Down
5 changes: 5 additions & 0 deletions samples/shadow/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<!DOCTYPE html>
<!--
Copyright 2012-2014 The Polymer Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<script src="../../pointerevents.js"></script>
<style>
#host {
Expand Down
5 changes: 5 additions & 0 deletions samples/simple/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<!DOCTYPE html>
<!--
Copyright 2012-2014 The Polymer Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<html>
<head>
<meta charset="UTF-8">
Expand Down
Empty file modified samples/spaceship/index.html
100755 → 100644
Empty file.
7 changes: 6 additions & 1 deletion samples/spaceship/js/BulletSebs.js
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/** @license
* Copyright 2012-2014 The Polymer Authors. All rights reserved.
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file.
*/
Bullet = function(x, y, angle) {

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

this.reset(x,y,angle);

};
};
5 changes: 5 additions & 0 deletions samples/spaceship/js/ShipMovingTouch.js
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/** @license
* Copyright 2012-2014 The Polymer Authors. All rights reserved.
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file.
*/
ShipMoving = function(x,y) {


Expand Down
5 changes: 5 additions & 0 deletions samples/spaceship/js/Vector2.js
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/** @license
* Copyright 2012-2014 The Polymer Authors. All rights reserved.
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file.
*/

var Vector2 = function (x,y) {

Expand Down
5 changes: 5 additions & 0 deletions samples/tracker/index.html
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
<!doctype html>
<!--
Copyright 2012-2014 The Polymer Authors. All rights reserved.
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<html lang=en>
<head>
<meta charset=utf-8>
Expand Down

0 comments on commit ba001fd

Please sign in to comment.