Skip to content

Instantly share code, notes, and snippets.

@Jwsonic
Created August 6, 2014 00:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jwsonic/8a37ff47e530c308ecff to your computer and use it in GitHub Desktop.
Save Jwsonic/8a37ff47e530c308ecff to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../components/polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
#paper_toast {
left: 720px;
top: 370px;
position: absolute;
}
#paper_toast1 {
left: 770px;
top: 400px;
position: absolute;
}
#paper_button {
left: 540px;
top: 300px;
position: absolute;
}
</style>
<paper-toast text="Toast!" id="paper_toast" class="core-transition core-transition-bottom"></paper-toast>
<paper-toast text="Toast!" id="paper_toast1" class="core-transition core-transition-bottom"></paper-toast>
<paper-button label="Paper Button" id="paper_button"></paper-button>
</template>
<script>
Polymer('my-element', {
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment