Skip to content

Commit

Permalink
fix: crossDomainLinker bug
Browse files Browse the repository at this point in the history
  • Loading branch information
revolunet committed Sep 3, 2014
1 parent e821407 commit 5b40b9c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "revolunet",
"name": "angular-google-analytics",
"description": "Easy Analytics for your AngularJS application",
"version": "0.0.3",
"version": "0.0.4",
"homepage": "https://github.com/revolunet/angular-google-analytics",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions dist/angular-google-analytics.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Angular Google Analytics - Easy tracking for your AngularJS application
* @version v0.0.4 - 2014-08-28
* @version v0.0.4 - 2014-09-03
* @link http://revolunet.com.github.com/angular-google-analytics
* @author Julien Bouquillon <[email protected]>
* @license MIT License, http://www.opensource.org/licenses/MIT
Expand Down Expand Up @@ -61,7 +61,7 @@ angular.module('angular-google-analytics', [])
};

this.useCrossDomainLinker = function(val) {
crossDomainLinker === !!val;
crossDomainLinker = !!val;
return true;
};

Expand Down
4 changes: 2 additions & 2 deletions dist/angular-google-analytics.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 src/angular-google-analytics.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ angular.module('angular-google-analytics', [])
};

this.useCrossDomainLinker = function(val) {
crossDomainLinker === !!val;
crossDomainLinker = !!val;
return true;
};

Expand Down

0 comments on commit 5b40b9c

Please sign in to comment.