This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- | |
Polymer <template> repeat example | |
- pass in array of objects through custom element attribute | |
<person-list persons="[{'name': 'Eric'}, {'name': 'Bob'}]"></person-list> | |
--> | |
<html> | |
<head> | |
<script src="/polymer/components/platform/platform.js"></script> | |
<link rel="import" href="/polymer/components/polymer/polymer.html"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Multi Touch HTML5 Canvas Paint</title> | |
<meta charset="UTF-8"> | |
</head> | |
<!--[if lt IE 7 ]> <body class="ie6 "> <![endif]--> | |
<!--[if IE 7 ]> <body class="ie7 "> <![endif]--> | |
<!--[if IE 8 ]> <body class="ie8 "> <![endif]--> | |
<!--[if !IE]>--> <body class=""> <!--<![endif]--> |