@phun-ky/frameport / config/browser
▸ activate(frameport
): void
A function to activate frameport based on script attributes.
Name | Type | Description |
---|---|---|
frameport |
FrameportFunctionType |
The frameport function to execute. |
void
Example
// Usage example:
// activate(myRDE);
▸ domReady(frameport
): void
A function to initialize frameport when the DOM is ready.
Name | Type | Description |
---|---|---|
frameport |
FrameportFunctionType |
The frameport function to execute. |
void
Example
// Usage example:
// domReady(myRDE);
▸ lazy(): void
A function to initialize lazy frameport functionality.
void
Example
// Usage example:
// lazy();
▸ manual(frameport
): void
A function to manually activate frameport.
Name | Type | Description |
---|---|---|
frameport |
FrameportFunctionType |
The frameport function to execute. |
void
Example
// Usage example:
// manual(myRDE);