From d3839e365150cc301db47a70af1feafed9296dfd Mon Sep 17 00:00:00 2001 From: dmuneras Date: Mon, 19 Oct 2015 11:01:08 -0500 Subject: [PATCH] changing gif --- README.md | 2 +- package.json | 2 +- tests/dummy/app/controllers/application.js | 2 +- tests/dummy/app/templates/application.hbs | 5 ++--- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 46b3f59..209d267 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ in a text field. This addon is very simple and just give you all the information of a place from google, you can do whatever you want with that information using a callback function in your controller. -![Autocomplete](http://i.imgur.com/rFL5OgO.gif) +![Autocomplete](http://i.imgur.com/wzGgfiY.gif) ## Usage diff --git a/package.json b/package.json index ea8537e..1d22d1e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ember-place-autocomplete", - "version": "0.0.4", + "version": "0.0.5", "description": "Ember cli addon to provide a component that uses Google Places API to autocomplete place information when someone writes an address in a text field", "directories": { "doc": "doc", diff --git a/tests/dummy/app/controllers/application.js b/tests/dummy/app/controllers/application.js index e1623ae..3d2fb1e 100644 --- a/tests/dummy/app/controllers/application.js +++ b/tests/dummy/app/controllers/application.js @@ -3,7 +3,7 @@ export default Ember.Controller.extend({ actions:{ done: function(){ Ember.$('#message').fadeOut(500, () => { - this.set('message', 'Doing something after focus out'); + this.set('message', 'Focus out'); }).fadeIn(500); }, placeChanged: function(place){ diff --git a/tests/dummy/app/templates/application.hbs b/tests/dummy/app/templates/application.hbs index f949ab8..da6f83f 100644 --- a/tests/dummy/app/templates/application.hbs +++ b/tests/dummy/app/templates/application.hbs @@ -1,15 +1,14 @@ -

Welcome to Ember.js - Place Autocomplete Dummy Test

Message: {{message}}

{{place-autocomplete-field value= model.address - contr= this + handlerController= this inputClass= 'place-autocomplete--input' focusOutCallback="done" placeChangedCallback="placeChanged" }}
-
+
   {{placeJSON}}
 
{{outlet}}