Skip to content

Commit

Permalink
fix #2
Browse files Browse the repository at this point in the history
  • Loading branch information
vsilva472 committed May 16, 2020
1 parent 77e721a commit f0b0803
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ IE 10+ ✔ | Último ✔ | Último ✔ | Último ✔ | Último ✔ |
`git clone https://github.com/vsilva472/jquery-viacep.git` (HTTPS)

##### Instalação via NPM
`npm i @vsilva472/jquery-viacep`
`npm i @vsilva472/jquery-viacep --save`

##### Instalação via Composer
`composer require vsilva472/jquery-viacep`

##### Instalação via CDN
[https://www.jsdelivr.com/package/npm/@vsilva472/jquery-viacep](https://www.jsdelivr.com/package/npm/@vsilva472/jquery-viacep)

`<script src="https://cdn.jsdelivr.net/npm/@vsilva472/jquery-viacep@1/dist/jquery-viacep.min.js"></script>`
`<script src="https://cdn.jsdelivr.net/npm/@vsilva472/jquery-viacep/dist/jquery-viacep.min.js"></script>`



Expand Down Expand Up @@ -175,7 +175,7 @@ Evento | Descrição | Argumentos
`viacep.ajax.complete` | Disparado no final do ciclo da requisição independente se a mesma foi obteve sucesso ou erro. | `NULL`
`viacep.ajax.error` | Disparado quando ocorre um erro na requisição (400, 500 etc.) | `jqxhr, textStatus, error`
`viacep.ajax.success` | Disparado quando a requisição é feita com sucesso e após os bind dos valores nos campos | `response` completo incluindo os campos `unidade`, `ibge` e `gia` da api do ViaCEP
`viacep.response.error` | Disparado quando a requisição foi feita com sucesso porém o objeto json da resposta da api contém o atributo `error` | `cep, msg, response`
`viacep.response.error` | Disparado quando a requisição foi feita com sucesso porém o objeto json da resposta da api contém o atributo `erro` | `cep, msg, response`


## Exemplos avançados
Expand Down Expand Up @@ -310,7 +310,7 @@ Talvez seja interessante para e equibe de BI extrair algumas informações sobre

<script>
$('#form-5').on( 'viacep.ajax.success', function ( e, response ) {
ga( 'send', 'event', 'CEP', 'buscar', response.cidade );
ga( 'send', 'event', 'CEP', 'buscar', response.localidade );
});
</script>
```
Expand All @@ -328,7 +328,7 @@ $('#form-6').on( 'viacep.ajax.success', function ( e, response ) {
event: 'sendToGA',
eventCategory: 'CEP',
eventAction: 'buscar',
eventLabel: response.cidade
eventLabel: response.localidade
});
});
</script>
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery-viacep.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vsilva472/jquery-viacep",
"version": "1.0.1",
"version": "1.0.3",
"description": "Plugin jquery para auto completar endereços a partir de um cep utilizando a api do site viacep",
"author": "Vinicius Silva <vsilva472@gmail.com>",
"homepage": "https://github.com/vsilva472/jquery-viacep#readme",
Expand Down
2 changes: 1 addition & 1 deletion src/jquery-viacep.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
var _self = this, zipcode = cep, endpoint = this.apiUrl.replace( /%s/, zipcode ),

isResponseValid = function ( response ) {
if ( ! response.error ) return true;
if ( ! response.erro ) return true;

_self.dispatch( events.response_error, {
zipcode: zipcode,
Expand Down

0 comments on commit f0b0803

Please sign in to comment.