0.0.1 • Published 8 years ago

ember-kayako v0.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
8 years ago

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();