Skip to content
This repository was archived by the owner on Mar 13, 2018. It is now read-only.

Commit 01a9fc0

Browse files
committed
experiments
1 parent b9ec6d4 commit 01a9fc0

File tree

4 files changed

+61
-0
lines changed

4 files changed

+61
-0
lines changed

sorvell/app/importy2.html

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<template is="relocatable-import">
2+
<link rel="import" href="importy3.html">
3+
</template>

sorvell/app/importy3.html

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<script>
2+
Polymer('');
3+
</script>

sorvell/app/index.html

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<!DOCTYPE html>
2+
<!--
3+
Copyright 2013 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+
<html>
8+
<head>
9+
<title>stuff</title>
10+
<script>
11+
Paths = {
12+
polymer: '../../polymer'
13+
};
14+
</script>
15+
<script src="../../../platform/platform.js"></script>
16+
</head>
17+
<body>
18+
<x-test>Loading....</x-test>
19+
20+
<polymer-element name="x-test" noscript>
21+
<template>
22+
<div>Scratch</div>
23+
</template>
24+
</polymer-element>
25+
26+
<polytaire-card faceup></polytaire-card>
27+
28+
<!-- <link rel="import" href="../../../polymer/polymer.html"> -->
29+
<link rel="import" href="../../../polytaire-elements/polytaire-card/importy.html">
30+
<link rel="import" href="importy2.html">
31+
</body>
32+
</html>

sorvell/scratch/index.html

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!DOCTYPE html>
2+
<!--
3+
Copyright 2013 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+
<html>
8+
<head>
9+
<title>scratch</title>
10+
<meta charset="utf-8">
11+
<script>Platform = {flags: {shadow: 'native'}};</script>
12+
<script src="../../../polymer/polymer.min.js"></script>
13+
</head>
14+
<body>
15+
<x-test></x-test>
16+
17+
<polymer-element name="x-test" noscript>
18+
<template>
19+
<div>Scratch</div>
20+
</template>
21+
</polymer-element>
22+
</body>
23+
</html>

0 commit comments

Comments
 (0)