Как я могу использовать getElementById в пользовательском элементе Polymer?
Вот мой элемент:
<link rel="import" href="../bower_components/polymer/polymer.html">
<link rel="import" href="../styles/shared-styles.html">
<dom-module id="bb-calendar">
<template>
<style is="custom-style" include="shared-styles"></style>
<div class="card">
<paper-toolbar>
<div title>Calendar</div>
</paper-toolbar>
<div id="hideme">
<div>this should be hidden</div>
</div>
</div>
</template>
<script>
Polymer({
is: 'bb-calendar',
ready: function() {
document.getElementById("hideme").style.display = 'none';
}
});
</script>
</dom-module>
Когда я запускаю код, я получаю это сообщение об ошибке: Uncaught TypeError: Cannot read property 'style' of null
Очевидно, что я делаю что-то неправильно, но я не знаю, что.