PairDrop/app/elements/file-sharing/file-button.html
Robin Linus 78dd776426 Rename global variable 'Chat' to 'Snapdrop'
Initially a lot of code was copied from another project. This lead to confusing naming conventions.
2016-10-17 01:40:50 +02:00

14 lines
460 B
HTML

<link rel="import" href="../../bower_components/paper-icon-button/paper-icon-button.html">
<link rel="import" href="file-button-behavior.html">
<dom-module id="file-button">
<template>
<paper-icon-button id="btn" icon="chat:attach-file" on-tap="_upload"></paper-icon-button>
</template>
<script>
'use strict';
Polymer({
is: 'file-button',
behaviors: [Snapdrop.FileButtonBehavior]
});
</script>
</dom-module>