diff options
author | Thomas Park <thomas@thomaspark.me> | 2012-05-19 12:45:24 -0400 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2012-05-19 12:45:24 -0400 |
commit | 984ac79396802c338cc7806963028614bebb9318 (patch) | |
tree | 9f2c9d7955a1edc9c536e3967c6cca97c7d9be47 | |
parent | cfd51ed270c6742d673629759f3b6919f05260ce (diff) |
index: changed link to news from tumblr to subdomain
-rw-r--r-- | js/bootswatch.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/bootswatch.js b/js/bootswatch.js index 444906ef..bb552b7a 100644 --- a/js/bootswatch.js +++ b/js/bootswatch.js @@ -1,5 +1,5 @@ var menu = '<ul class="nav"> \ - <li><a 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://news.bootswatch.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> \ @@ -41,7 +41,7 @@ menu = menu + ' </ul> \ </ul>'; $('.navbar .nav-collapse').first().append(menu); - + $('a[rel=tooltip]').tooltip({ 'placement': 'bottom' }); @@ -53,4 +53,4 @@ taglines.push('Saving the web from default <a target="_blank" href="http://twitt var line = Math.floor((taglines.length) * Math.random()); $('#tagline').html(taglines[line]); - + |