Skip to content

Latest commit

 

History

History
113 lines (66 loc) · 1.85 KB

config_browser.md

File metadata and controls

113 lines (66 loc) · 1.85 KB

@phun-ky/frameport / config/browser

Module: config/browser

Functions

activate

activate(frameport): void

A function to activate frameport based on script attributes.

Parameters

Name Type Description
frameport FrameportFunctionType The frameport function to execute.

Returns

void

Example

// Usage example:
// activate(myRDE);

Defined in

config/browser.ts:120


domReady

domReady(frameport): void

A function to initialize frameport when the DOM is ready.

Parameters

Name Type Description
frameport FrameportFunctionType The frameport function to execute.

Returns

void

Example

// Usage example:
// domReady(myRDE);

Defined in

config/browser.ts:17


lazy

lazy(): void

A function to initialize lazy frameport functionality.

Returns

void

Example

// Usage example:
// lazy();

Defined in

config/browser.ts:37


manual

manual(frameport): void

A function to manually activate frameport.

Parameters

Name Type Description
frameport FrameportFunctionType The frameport function to execute.

Returns

void

Example

// Usage example:
// manual(myRDE);

Defined in

config/browser.ts:105