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

Commit

Permalink
experiments
Browse files Browse the repository at this point in the history
  • Loading branch information
sorvell committed Oct 30, 2013
1 parent b9ec6d4 commit 01a9fc0
Show file tree
Hide file tree
Showing 4 changed files with 61 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sorvell/app/importy2.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template is="relocatable-import">
<link rel="import" href="importy3.html">
</template>
3 changes: 3 additions & 0 deletions sorvell/app/importy3.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<script>
Polymer('');
</script>
32 changes: 32 additions & 0 deletions sorvell/app/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<!--
Copyright 2013 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>
<title>stuff</title>
<script>
Paths = {
polymer: '../../polymer'
};
</script>
<script src="../../../platform/platform.js"></script>
</head>
<body>
<x-test>Loading....</x-test>

<polymer-element name="x-test" noscript>
<template>
<div>Scratch</div>
</template>
</polymer-element>

<polytaire-card faceup></polytaire-card>

<!-- <link rel="import" href="../../../polymer/polymer.html"> -->
<link rel="import" href="../../../polytaire-elements/polytaire-card/importy.html">
<link rel="import" href="importy2.html">
</body>
</html>
23 changes: 23 additions & 0 deletions sorvell/scratch/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<!--
Copyright 2013 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>
<title>scratch</title>
<meta charset="utf-8">
<script>Platform = {flags: {shadow: 'native'}};</script>
<script src="../../../polymer/polymer.min.js"></script>
</head>
<body>
<x-test></x-test>

<polymer-element name="x-test" noscript>
<template>
<div>Scratch</div>
</template>
</polymer-element>
</body>
</html>

0 comments on commit 01a9fc0

Please sign in to comment.