PairDrop/app/elements/file-sharing/file-input.html
2015-12-19 01:18:02 +01:00

17 lines
400 B
HTML

<link rel="import" href="file-drop-behavior.html">
<link rel="import" href="file-button-behavior.html">
<dom-module id="file-input">
<template>
<style>
</style>
<content></content>
</template>
<script>
'use strict';
Polymer({
is: 'file-input',
behaviors: [Chat.FileDropBehavior,Chat.FileButtonBehavior]
});
</script>
</dom-module>