Skip to content

Commit

Permalink
fix for garbage issue with new branch
Browse files Browse the repository at this point in the history
  • Loading branch information
saleemkce committed May 15, 2015
1 parent ac0d536 commit d7978d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/piwik.js
Expand Up @@ -3311,7 +3311,7 @@ if (typeof Piwik !== 'object') {
// browsers, such as Safari, don't downcase hostname and href
var originalSourceHostName = sourceElement.hostname || getHostName(sourceElement.href);
var sourceHostName = originalSourceHostName.toLowerCase();
var sourceHref = sourceElement.href.replace(originalSourceHostName, sourceHostName);
var sourceHref = href.replace(originalSourceHostName, sourceHostName);

// browsers, such as Safari, don't downcase hostname and href
var scriptProtocol = new RegExp('^(javascript|vbscript|jscript|mocha|livescript|ecmascript|mailto):', 'i');
Expand Down
2 changes: 1 addition & 1 deletion piwik.js

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

0 comments on commit d7978d6

Please sign in to comment.