2015-12-18 17:43:46 +01:00
|
|
|
<link rel="import" href="file-drop-behavior.html">
|
2015-12-19 01:18:02 +01:00
|
|
|
<link rel="import" href="file-button-behavior.html">
|
|
|
|
<dom-module id="file-input">
|
2015-12-18 17:43:46 +01:00
|
|
|
<template>
|
|
|
|
<style>
|
2015-12-19 01:18:02 +01:00
|
|
|
|
2015-12-18 17:43:46 +01:00
|
|
|
</style>
|
|
|
|
<content></content>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
'use strict';
|
|
|
|
Polymer({
|
2015-12-19 01:18:02 +01:00
|
|
|
is: 'file-input',
|
|
|
|
behaviors: [Chat.FileDropBehavior,Chat.FileButtonBehavior]
|
2015-12-18 17:43:46 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</dom-module>
|