Skip to content

Commit

Permalink
- fix typo error
Browse files Browse the repository at this point in the history
- version up
  • Loading branch information
guruahn committed Mar 11, 2019
1 parent 456b6bb commit ef6e8be
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# vue-google-oauth2
Handling Google sign-in and sign-out for Vue.js applications.
Forked from https://github.com/TinyNova/vue-google-oauth


## Installation
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var googleAuth = (function () {
var script = document.createElement('script')
script.src = apiUrl
script.onreadystatechange = script.onload = function () {
if (!script.readyState || /loaded|compvare/.test(script.readyState)) {
if (!script.readyState || /loaded|complete/.test(script.readyState)) {
setTimeout(function () {
resolve()
}, 500)
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": "vue-google-oauth2",
"version": "1.3.2",
"version": "1.3.3",
"description": "Handling Google Auth2 sign-in and sign-out",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit ef6e8be

Please sign in to comment.