diff options
author | Thomas Park <thomas@thomaspark.me> | 2012-03-10 09:10:42 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2012-03-10 09:10:42 -0500 |
commit | 235fc7210f787fbc9dfd8603d63bb2f3614593cc (patch) | |
tree | 1a11b905611f3ffa7ecd3c21c1f2339686de6c88 | |
parent | 1174f7d3d0636b69e255daf208b1642092a1c2d0 (diff) |
remove target new on links
-rw-r--r-- | index.html | 4 | ||||
-rw-r--r-- | js/bootswatch.js | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -68,7 +68,7 @@ <a href="https://twitter.com/share" class="twitter-share-button" data-url="http://bootswatch.com" data-via="thomashpark">Tweet</a> </div> <div class="span1"> - <a class="btn rss" target="_blank" href="http://feeds.feedburner.com/bootswatch"><i class="icon-rss"></i><span>RSS</span></a> + <a class="btn rss" href="http://feeds.feedburner.com/bootswatch"><i class="icon-rss"></i><span>RSS</span></a> </div> </div> </div> @@ -107,7 +107,7 @@ <div class="span4"> <img src="img/glyphicons_032_wifi_alt.png"> <h3>Stay Updated</h3> - <p>Be notified when new swatches are released by subscribing via <a target="_blank" href="http://feeds.feedburner.com/bootswatch">RSS feed</a>, <a target="_blank" href="http://feedburner.google.com/fb/a/mailverify?uri=bootswatch&loc=en_US">email</a>, or <a target="_blank" href="http://bootswatch.tumblr.com/">Tumblr</a>.</p> + <p>Be notified when new swatches are released by subscribing via <a href="http://feeds.feedburner.com/bootswatch">RSS feed</a>, <a href="http://feedburner.google.com/fb/a/mailverify?uri=bootswatch&loc=en_US">email</a>, or <a href="http://bootswatch.tumblr.com/">Tumblr</a>.</p> </div> </div> diff --git a/js/bootswatch.js b/js/bootswatch.js index 0dec6dbf..49b17176 100644 --- a/js/bootswatch.js +++ b/js/bootswatch.js @@ -1,5 +1,5 @@ var menu = '<ul class="nav"> \ - <li><a target="_blank" onclick="pageTracker._link(this.href); return false;" href="http://bootswatch.tumblr.com">News</a></li> \ + <li><a onclick="pageTracker._link(this.href); return false;" href="http://bootswatch.tumblr.com">News</a></li> \ <li><a id="swatch-link" href="/#gallery">Gallery</a></li> \ <li class="dropdown"> \ <a class="dropdown-toggle" data-toggle="dropdown" href="#">Preview <b class="caret"></b></a> \ |