summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2012-03-13 00:36:34 -0400
committerThomas Park <thomas@thomaspark.me>2012-03-13 00:36:34 -0400
commit4b6bb3e7c781fe6b831f16199de98bae65118e3f (patch)
tree1e9661206b9e5215e98b91aa29f8197e3bf61950 /js
parentd7d2c971841b03230c84d4463d9c526913c376ce (diff)
index: added random taglines
Diffstat (limited to 'js')
-rw-r--r--js/bootswatch.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/js/bootswatch.js b/js/bootswatch.js
index 8111a151..3abbc701 100644
--- a/js/bootswatch.js
+++ b/js/bootswatch.js
@@ -44,3 +44,11 @@ menu = menu + ' </ul> \
$('a[rel=tooltip]').tooltip({
'placement': 'bottom'
});
+
+var taglines = [];
+taglines.push('Add color to your <a target="_blank" href="http://twitter.github.com/bootstrap/">Bootstrap</a> site without touching a color picker.');
+taglines.push('Saving the web from default <a target="_blank" href="http://twitter.github.com/bootstrap/">Bootstrap</a>.');
+
+var line = Math.floor((taglines.length) * Math.random());
+$('#tagline').html(taglines[line]);
+