Skip to content

Instantly share code, notes, and snippets.

@kamalkhan
Last active September 5, 2015 06:47
Show Gist options
  • Save kamalkhan/d3e0ea451ac1bb4b495b to your computer and use it in GitHub Desktop.
Save kamalkhan/d3e0ea451ac1bb4b495b to your computer and use it in GitHub Desktop.
Awesome Live Chat - Custom trigger
(function($){
$(document).ready(function($){
$('.css-class').on('click', function(e){
e.preventDefault();
AwesomeLiveChat.vent.trigger('app:toggle');
});
})
})(jQuery);
@kamalkhan
Copy link
Author

Add the snippet to the javascript section in the plugin settings and replace .css-class with the css selector of a DOM element.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment