This is the code snippet from my index.html file in Polymer 1.1:
<template is="dom-bind" id="app">
<paper-drawer-panel force-narrow id="the-drawer">
<paper-header-panel drawer>
<paper-toolbar></paper-toolbar>
<div> Drawer content... </div>
</paper-header-panel>
<paper-header-panel shadow="true"
mode="waterfall-tall"
main
class="fit">
<paper-toolbar>
I am trying to incorporate iron-resizable-behavior
into my project to handle resize events without creating a custom element specifically for this purpose. Is it feasible to integrate iron-resizable-behavior
directly into the index.html file?