Skip to content

Instantly share code, notes, and snippets.

@bmelton
Created April 9, 2012 02:14
Show Gist options
  • Save bmelton/2340861 to your computer and use it in GitHub Desktop.
Save bmelton/2340861 to your computer and use it in GitHub Desktop.
A Gentle Introduction to Ember - Adding a textbox - Default Search String
Example = Ember.Application.create({
name: "Example Application",
logo: "http://sympodial.com/images/logo.png",
searchString: "%23EmberJS",
ready: function() {
Example.populate.getTweets();
setInterval(function() {
Example.populate.getTweets();
}, 2000);
}.observes("name")
})
@bmelton
Copy link
Author

bmelton commented Apr 9, 2012

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