Load Event
Fired: When the Wildfire UI is loaded.
Event Handler: onLoad.
Event Object fields:
| Field | Type | Description |
| type | string | The name of the event: "load". |
| ModuleID | string | The ID of the module that triggered the event. |
PostProfile Event
Fired: After the user posts content to her own profile, after the user sends an Email and after the user posts a comment or bookmark.
Event Handler: onPostProfile.
Event Object fields:
| Field | Type | Description |
| type | string | The name of the event: "postprofile". |
| ModuleID | string | The ID of the module that triggered the event. |
| network | string | The social network to which the user posted the comment. |
| partnerData | | Deprecated. This is for backward compatibility, please use CID. |
| CID | string | The data set by the partner when Wildfire was initialized. (For more information, refer to the CID parameter reference.) |
| username | string | The name the user entered for the social network. |
| content | string | The content that was posted. |
Close Event
Fired: When the user clicks the close button of the Wildfire UI.
Note - the close button will only be available if you explicitly requested that it will be displayed using the Advanced Setup wizard page.
Event Handler: onClose.
Event Object fields:
| Field | Type | Description |
| type | string | The name of the event: "close". |
| ModuleID | string | The ID of the module that triggered the event. |
Email Event
Fired: After an email has been sent by the user.
Event Handler: onEmail.
Event Object fields:
| Field | Type | Description |
| type | string | The name of the event: "email". |
| ModuleID | string | The ID of the module that triggered the event. |
| recipients | Array | An array of objects that each has a name property and an email property corresponding to the recipients of the email that was sent. |
| senderName | string | The sender's name, as he entered in the Wildfire UI. |
RenderDone Event
Fired: Whenever Wildfire finishes rendering one of its screens.
Event Handler: onRenderDone.
Event Object fields:
| Field | Type | Description |
| type | string | The name of the event: "renderDone". |
| ModuleID | string | The ID of the module that triggered the event. |
| page | string | The name of the screen that had been rendered. Possible values for this field are: "NetworkSelection", "AfterOpenURL", "SelectEmailContacts", "PostToSocialNetwork", "ImportEmailContacts", "AskAboutRemember". |
NetworkButtonClicked Event
Fired: Whenever a social network button (icon) has been clicked.
Event Handler: onNetworkButtonClicked.
Event Object fields:
| Field | Type | Description |
| type | string | The name of the event: "networkButtonClicked". |
| ModuleID | string | The ID of the module that triggered the event. |
| network | string | The name of the social network whose associated button (icon) has been clicked. |
Copy Event
Fired: Whenever a user clicks on copy button or clicks within the codebox
Event Handler: onCopy.
Event Object fields:
| Field | Type | Description |
| type | string | The name of the event: "networkButtonClicked". |
| ModuleID | string | The ID of the module that triggered the event. |
| content | string | The content that was copied. |
| CID | string | The data set by the partner when Wildfire was initialized. (For more information, refer to the CID parameter reference.) |
| network | string | The name of a social network, if the copy action had been done in the context of a social network. Otherwise - this parameter will hold an empty string. |
< Back to 'Wildfire API'