file-input.html 400 B

1234567891011121314151617
  1. <link rel="import" href="file-drop-behavior.html">
  2. <link rel="import" href="file-button-behavior.html">
  3. <dom-module id="file-input">
  4. <template>
  5. <style>
  6. </style>
  7. <content></content>
  8. </template>
  9. <script>
  10. 'use strict';
  11. Polymer({
  12. is: 'file-input',
  13. behaviors: [Chat.FileDropBehavior,Chat.FileButtonBehavior]
  14. });
  15. </script>
  16. </dom-module>