Skip to content

Instantly share code, notes, and snippets.

@Xect
Last active August 29, 2015 14:11
Show Gist options
  • Save Xect/c49fb7580e5a7b9484bf to your computer and use it in GitHub Desktop.
Save Xect/c49fb7580e5a7b9484bf to your computer and use it in GitHub Desktop.
designer
<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