ember-kayako

v0.0.1
The default blueprint for ember-cli addons.
ember-addon

ember-kayako

Adds the Kayako messenger to your app.

Installation

ember install ember-kayako

Configuration

// config/environment.js

ENV['kayako'] = {
  subdomain:      "foo", // required
  defaultName:    "Your App's Name",
  welcomeMessage: "How can we help?"
};

Service

The addon installs a kayako service which you can use to interact with the messenger:

First inject the kayako service into your component/route/controller:

export default Ember.Component.extend({
  kayako: Ember.inject.service(),
});

Once that's injected you can show/hide the messenger:

// show the messenger
this.get('kayako').show();

// hide the messenger
this.get('kayako').hide();
npm i ember-kayako

Metadata

  • MIT
  • >= 0.10.0
  • Unknown
  • released 8/19/2016

Downloads

Maintainers