If I have a custom web component in Polymer, is it possible to scope the template to be part of the main DOM (of index.html) and not be in the shadow?
I am trying to hook into an input that is activated by a script, and the script is not able to see the shadow DOM.
<link rel="import" href="../../bower_components/polymer/polymer.html">
<dom-module id="custom-element">
<template>
// Code to be scoped for index.html
<div id="script-selects-this-id-and-converts-div-to-input"></div>
</template>
<script>
Polymer({
is: 'custom-element'
});
</script>
</dom-module>