noreferrer 0.4 → 0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +1 -1
- data/noreferrer.gemspec +1 -1
- data/vendor/assets/javascripts/jquery.noreferrer.js +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -13,7 +13,7 @@ Example:
|
|
13
13
|
The following exmaple will intercept and remove the referrer information to any links that link to google.
|
14
14
|
|
15
15
|
$(document).ready(function(){
|
16
|
-
|
16
|
+
$(document).noreferrer('a', ['google', 'yahoo.com']);
|
17
17
|
});
|
18
18
|
|
19
19
|
--
|
data/noreferrer.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = "noreferrer"
|
7
|
-
gem.version = 0.
|
7
|
+
gem.version = 0.5
|
8
8
|
gem.authors = ["Rodney Carvalho"]
|
9
9
|
gem.email = ["rcarvalho@atlantistech.com"]
|
10
10
|
gem.description = "Removes referrer information on an html link."
|