Skip to content

Commit c822a12

Browse files
committed
Repackaged library
1 parent b0abb4e commit c822a12

File tree

8 files changed

+19
-16
lines changed

8 files changed

+19
-16
lines changed

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"eslint.enable": false
3+
}

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-authenticate",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"main": "dist/vue-authenticate.js",
55
"homepage": "https://github.com/dgrubelic/vue-authenticate",
66
"ignore": [

dist/vue-authenticate.common.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-authenticate v1.2.5
2+
* vue-authenticate v1.2.7
33
* https://github.com/dgrubelic/vue-authenticate
44
* Released under the MIT License.
55
*/
@@ -1072,8 +1072,8 @@ var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
10721072
if (this.options.bindRequestInterceptor && isFunction(this.options.bindRequestInterceptor) &&
10731073
this.options.bindResponseInterceptor && isFunction(this.options.bindResponseInterceptor)) {
10741074

1075-
this.options.bindRequestInterceptor.call(this);
1076-
this.options.bindResponseInterceptor.call(this);
1075+
this.options.bindRequestInterceptor.call(this, this);
1076+
this.options.bindResponseInterceptor.call(this, this);
10771077
} else {
10781078
// By default, request and response interceptors are for vue-resource
10791079
this.$http.interceptors.push(function (request, next) {

dist/vue-authenticate.es2015.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-authenticate v1.2.5
2+
* vue-authenticate v1.2.7
33
* https://github.com/dgrubelic/vue-authenticate
44
* Released under the MIT License.
55
*/
@@ -1070,8 +1070,8 @@ var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
10701070
if (this.options.bindRequestInterceptor && isFunction(this.options.bindRequestInterceptor) &&
10711071
this.options.bindResponseInterceptor && isFunction(this.options.bindResponseInterceptor)) {
10721072

1073-
this.options.bindRequestInterceptor.call(this);
1074-
this.options.bindResponseInterceptor.call(this);
1073+
this.options.bindRequestInterceptor.call(this, this);
1074+
this.options.bindResponseInterceptor.call(this, this);
10751075
} else {
10761076
// By default, request and response interceptors are for vue-resource
10771077
this.$http.interceptors.push(function (request, next) {

dist/vue-authenticate.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-authenticate v1.2.5
2+
* vue-authenticate v1.2.7
33
* https://github.com/dgrubelic/vue-authenticate
44
* Released under the MIT License.
55
*/
@@ -1076,8 +1076,8 @@ var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
10761076
if (this.options.bindRequestInterceptor && isFunction(this.options.bindRequestInterceptor) &&
10771077
this.options.bindResponseInterceptor && isFunction(this.options.bindResponseInterceptor)) {
10781078

1079-
this.options.bindRequestInterceptor.call(this);
1080-
this.options.bindResponseInterceptor.call(this);
1079+
this.options.bindRequestInterceptor.call(this, this);
1080+
this.options.bindResponseInterceptor.call(this, this);
10811081
} else {
10821082
// By default, request and response interceptors are for vue-resource
10831083
this.$http.interceptors.push(function (request, next) {

dist/vue-authenticate.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/vue-authenticate.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* vue-authenticate v1.2.5
2+
* vue-authenticate v1.2.7
33
* https://github.com/dgrubelic/vue-authenticate
44
* Released under the MIT License.
55
*/
@@ -1076,8 +1076,8 @@ var VueAuthenticate = function VueAuthenticate($http, overrideOptions) {
10761076
if (this.options.bindRequestInterceptor && isFunction(this.options.bindRequestInterceptor) &&
10771077
this.options.bindResponseInterceptor && isFunction(this.options.bindResponseInterceptor)) {
10781078

1079-
this.options.bindRequestInterceptor.call(this);
1080-
this.options.bindResponseInterceptor.call(this);
1079+
this.options.bindRequestInterceptor.call(this, this);
1080+
this.options.bindResponseInterceptor.call(this, this);
10811081
} else {
10821082
// By default, request and response interceptors are for vue-resource
10831083
this.$http.interceptors.push(function (request, next) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-authenticate",
3-
"version": "1.2.6",
3+
"version": "1.2.7",
44
"description": "Authentication library for Vue.js",
55
"main": "dist/vue-authenticate.js",
66
"module": "dist/vue-authenticate.es2015.js",

0 commit comments

Comments
 (0)