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 93faada commit ad59246Copy full SHA for ad59246
packages/uikit-workshop/src/scripts/lit-components/pl-viewport-size-list/pl-viewport-size-list.js
@@ -62,7 +62,7 @@ class ViewportSizes extends BaseComponent {
62
document.removeEventListener('keyup', this.handleKeyCombination);
63
document.addEventListener('keydown', this.handleKeyDownEvent.bind(this));
64
document.addEventListener('keyup', this.handleKeyCombination.bind(this));
65
- self.receiveIframeMessage = this.receiveIframeMessage.bind(self);
+ this.receiveIframeMessage = this.receiveIframeMessage.bind(this);
66
67
window.removeEventListener('message', this.receiveIframeMessage);
68
window.addEventListener('message', this.receiveIframeMessage, false);
0 commit comments