Javascript Event System - profile-page-toggle-more-tags

From KickApps Documentation

Jump to: navigation, search

This article pertains to the Javascript Event System. You can refer to our list of Javascript Event System Supported Events to learn what else you can do with our event system.

Contents

Summary

This event is fired when the user toggles the Tags section of the profile

Payload Parameters

collapsed
(boolean) Represents the current state of the Tags panel

Execution Interruption

If your event handler returns false, the execution will halt and the Tags section will not be toggled.

Example

function onToggleTags(data) {

   // do something here
   console.log(data.collapsed);

} var newEventId = Ka.events.listen('profile-page-toggle-more-tags', onToggleTags);