Last active
August 29, 2015 14:11
-
-
Save Xect/c49fb7580e5a7b9484bf to your computer and use it in GitHub Desktop.
designer
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
| <link rel="import" href="../core-icons/core-icons.html"> | |
| <link rel="import" href="../core-icons/av-icons.html"> | |
| <link rel="import" href="../paper-fab/paper-fab.html"> | |
| <link rel="import" href="../paper-toast/paper-toast.html"> | |
| <polymer-element name="my-element"> | |
| <template> | |
| <style> | |
| #div { | |
| left: 310px; | |
| top: 190px; | |
| position: absolute; | |
| } | |
| paper-toast { | |
| bottom: 0px; | |
| left: 0px; | |
| width: 100%; | |
| } | |
| </style> | |
| <div id="div" layout horizontal> | |
| <paper-fab icon="check" id="paper_fab" onclick="discardDraft(el)"></paper-fab> | |
| </div> | |
| <paper-toast text="Your draft has been discarded." onclick="discardDraft(el)" touch-action="none" class="core-transition core-transition-bottom"> | |
| </paper-toast> | |
| </template> | |
| <script> | |
| Polymer({ | |
| }); | |
| </script> | |
| </polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment