Merge branch 'master' of github.com:gorhill/uBlock

This commit is contained in:
gorhill 2015-01-26 07:55:51 -05:00
commit 99b45ae122

View file

@ -209,7 +209,7 @@ var is3rdParty = function(srcHostname, desHostname) {
return true; return true;
} }
// Do not confuse 'example.com' with 'anotherexample.com' // Do not confuse 'example.com' with 'anotherexample.com'
return desHostname.lenght !== srcDomain.lenght && return desHostname.length !== srcDomain.length &&
desHostname.charAt(desHostname.length - srcDomain.length - 1) !== '.'; desHostname.charAt(desHostname.length - srcDomain.length - 1) !== '.';
}; };