Skip to content

Instantly share code, notes, and snippets.

@davidascher
Created November 20, 2013 06:41
Show Gist options
  • Save davidascher/7558740 to your computer and use it in GitHub Desktop.
Save davidascher/7558740 to your computer and use it in GitHub Desktop.
<html>
<head>
<link rel="import" href="https://appmaker.mozillalabs.com/test_assets/ceci/ceci-broadcast.html">
<link rel="import" href="https://appmaker.mozillalabs.com/test_assets/ceci/ceci-listen.html">
<link rel="import" href="https://appmaker.mozillalabs.com/test_assets/ceci/ceci-element.html">
<link rel="import" href="https://appmaker.mozillalabs.com/test_assets/ceci/ceci-app.html">
<link rel="import" href="https://appmaker.mozillalabs.com/test_assets/ceci/ceci-card.html">
<link rel="import" href="https://appmaker.mozillalabs.com/test_assets/ceci/test/fixtures/ceci-value-holder.html">
<!-- The component we're testing here. -->
<link rel="import" href="component.html">
<script src="https://appmaker.mozillalabs.com/test_assets/vendor/polymer/polymer.min.js"></script>
<style>
ceci-app {
float: left
}
</style>
</head>
<body>
<ceci-app id="hello-app">
<ceci-card visible>
<ceci-top>
<ceci-button id="hello-button" class="hi" label="Say hello!" value="hi">
</ceci-button>
</ceci-top>
<ceci-middle>
<ceci-value-holder id="value-holder">
<ceci-listen on="blue" for="setValue"></ceci-listen>
</ceci-value-holder>
</ceci-middle>
<ceci-bottom>
</ceci-bottom>
</ceci-card>
</ceci-app>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment