17 lines
400 B
HTML
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>
|