Skip to content

Commit

Permalink
changing gif
Browse files Browse the repository at this point in the history
  • Loading branch information
dmuneras committed Oct 19, 2015
1 parent 9e102eb commit d3839e3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion tests/dummy/app/controllers/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -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){
Expand Down
5 changes: 2 additions & 3 deletions tests/dummy/app/templates/application.hbs
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
<h2 id="title">Welcome to Ember.js - Place Autocomplete Dummy Test</h2>
<p id="message">Message: {{message}}</p>
<div class="test-place-autocomplete-container">
{{place-autocomplete-field
value= model.address
contr= this
handlerController= this
inputClass= 'place-autocomplete--input'
focusOutCallback="done"
placeChangedCallback="placeChanged"
}}
</div>
<pre>
<pre style="font-size: 6px;">
{{placeJSON}}
</pre>
{{outlet}}
Expand Down

0 comments on commit d3839e3

Please sign in to comment.