Anton Konev
Anton Konev
It's awfull way, but you can do something like that: ``` ready: function() { this.shadowRoot.addEventListener("dom-change", function(event){ var elementToFocus = this.getElementById(window.location.hash.slice(1)); if (elementToFocus) { elementToFocus.scrollIntoView(); } }); }, ```
I've got the same problem. You can reproduce if write chains in gulp tasks: Something like that: ``` gulp.task('default', ['build'], function (done) { tools.run('watch', 'server', done); }); ``` And in...