Ember.js Mixin for a twitter enabled app
Switch branches/tags
Nothing to show
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
README.md
ember-twitter.js

README.md

Ember Twitter

Provides simple automation using the Twitter @anywhere API using Mixins.

Insipred by https://github.com/luan/ember-facebook

Usage

Include the mixin when you set up your application:

App = Em.Application.create(Em.Twitter);
App.set('twAppId', 'YourAppId');

Then work with the App.TWUser object:

{{#if App.TWUser}}
  ... some stuff with the twitter user info ...
{{else}}
  Hey you're not connected to twitter
{{/if}}