From 8e1d26045acb474fd5b11065c7cf75ebc70bf123 Mon Sep 17 00:00:00 2001 From: Thomas Park Date: Fri, 29 Jun 2012 17:28:12 -0400 Subject: refactor menu code --- js/bootswatch.js | 66 +++++++------------------------------------ js/snippets/main-menu.html | 26 +++++++++++++++++ js/snippets/preview-menu.html | 8 ++++++ 3 files changed, 44 insertions(+), 56 deletions(-) create mode 100644 js/snippets/main-menu.html create mode 100644 js/snippets/preview-menu.html (limited to 'js') diff --git a/js/bootswatch.js b/js/bootswatch.js index 70fb9fd3..82faa2b5 100644 --- a/js/bootswatch.js +++ b/js/bootswatch.js @@ -1,56 +1,10 @@ -var menu = ' \ - '; - - $('.navbar .nav-collapse').first().append(menu); - - $('a[rel=tooltip]').tooltip({ - 'placement': 'bottom' - }); - -var taglines = []; -taglines.push('Free themes for Twitter Bootstrap'); -taglines.push('Add color to your Bootstrap site without touching a color picker'); -taglines.push('Saving the web from default Bootstrap'); - -var line = Math.floor((taglines.length) * Math.random()); -$('#tagline').html(taglines[line]); - +$('#main-menu').load('/js/snippets/main-menu.html', function(){ + if($('body').hasClass('preview')){ + $('#main-menu-left').append(''); + $('#preview-menu').load('/js/snippets/preview-menu.html'); + } + + $('a[rel=tooltip]').tooltip({ + 'placement': 'bottom' + }); +}); \ No newline at end of file diff --git a/js/snippets/main-menu.html b/js/snippets/main-menu.html new file mode 100644 index 00000000..c1683ee3 --- /dev/null +++ b/js/snippets/main-menu.html @@ -0,0 +1,26 @@ + + \ No newline at end of file diff --git a/js/snippets/preview-menu.html b/js/snippets/preview-menu.html new file mode 100644 index 00000000..c53c7eaa --- /dev/null +++ b/js/snippets/preview-menu.html @@ -0,0 +1,8 @@ +Download + \ No newline at end of file -- cgit v1.2.3