Commit 5838a84b authored by Robert Knight's avatar Robert Knight

Make some internal method names more concise

Remove an uninformative suffix from two method names.
parent d7568d7c
...@@ -188,7 +188,7 @@ export default class Guest { ...@@ -188,7 +188,7 @@ export default class Guest {
* @type {PortRPC<HostToGuestEvent, GuestToHostEvent>} * @type {PortRPC<HostToGuestEvent, GuestToHostEvent>}
*/ */
this._hostRPC = new PortRPC(); this._hostRPC = new PortRPC();
this._connectHostEvents(); this._connectHost();
/** /**
* Channel for guest-sidebar communication. * Channel for guest-sidebar communication.
...@@ -196,7 +196,7 @@ export default class Guest { ...@@ -196,7 +196,7 @@ export default class Guest {
* @type {PortRPC<SidebarToGuestEvent, GuestToSidebarEvent>} * @type {PortRPC<SidebarToGuestEvent, GuestToSidebarEvent>}
*/ */
this._sidebarRPC = new PortRPC(); this._sidebarRPC = new PortRPC();
this._connectSidebarEvents(); this._connectSidebar();
// Set up automatic and integration-triggered injection of client into // Set up automatic and integration-triggered injection of client into
// iframes in this frame. // iframes in this frame.
...@@ -320,7 +320,7 @@ export default class Guest { ...@@ -320,7 +320,7 @@ export default class Guest {
} }
} }
async _connectHostEvents() { async _connectHost() {
this._hostRPC.on( this._hostRPC.on(
'clearSelectionExceptIn', 'clearSelectionExceptIn',
/** @param {string|null} frameIdentifier */ /** @param {string|null} frameIdentifier */
...@@ -369,7 +369,7 @@ export default class Guest { ...@@ -369,7 +369,7 @@ export default class Guest {
this._hostRPC.connect(hostPort); this._hostRPC.connect(hostPort);
} }
async _connectSidebarEvents() { async _connectSidebar() {
// Handlers for events sent when user hovers or clicks on an annotation card // Handlers for events sent when user hovers or clicks on an annotation card
// in the sidebar. // in the sidebar.
this._sidebarRPC.on( this._sidebarRPC.on(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment