We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11189d4 commit 8c75fa1Copy full SHA for 8c75fa1
src/pat/push/push.js
@@ -2,6 +2,7 @@ import "regenerator-runtime/runtime"; // needed for ``await`` support
2
import Base from "../../core/base";
3
import logging from "../../core/logging";
4
import Parser from "../../core/parser";
5
+import registry from "../../core/registry";
6
7
const logger = logging.getLogger("push");
8
@@ -38,6 +39,7 @@ export default Base.extend({
38
39
} else {
40
this.el.innerHTML = data;
41
}
42
+ registry.scan(this.el);
43
} catch (e) {
44
logger.error(
45
`Could not fetch from ${this.options.url} on push-id ${this.options.pushId}.`
0 commit comments