From e6092c3fe985fb326ad3625274bb021ce61bf80c Mon Sep 17 00:00:00 2001 From: Thomas Park Date: Fri, 16 Nov 2012 11:55:47 -0500 Subject: [PATCH] index: no longer using snippets --- amelia/index.html | 37 +++++++- cerulean/index.html | 37 +++++++- cyborg/index.html | 37 +++++++- default/index.html | 37 +++++++- index.html | 27 +++++- journal/index.html | 37 +++++++- js/application.js | 154 +--------------------------------- js/bootstrap.min.js | 3 +- js/bootswatch.js | 11 +-- js/snippets/main-menu.html | 26 ------ js/snippets/preview-menu.html | 8 -- readable/index.html | 37 +++++++- simplex/index.html | 37 +++++++- slate/index.html | 37 +++++++- spacelab/index.html | 37 +++++++- spruce/index.html | 37 +++++++- superhero/index.html | 37 +++++++- united/index.html | 37 +++++++- 18 files changed, 463 insertions(+), 210 deletions(-) delete mode 100644 js/snippets/main-menu.html delete mode 100644 js/snippets/preview-menu.html diff --git a/amelia/index.html b/amelia/index.html index d2d8593..a4b1912 100755 --- a/amelia/index.html +++ b/amelia/index.html @@ -51,7 +51,42 @@ Bootswatch diff --git a/cerulean/index.html b/cerulean/index.html index 5ff463f..229046f 100755 --- a/cerulean/index.html +++ b/cerulean/index.html @@ -51,7 +51,42 @@ Bootswatch diff --git a/cyborg/index.html b/cyborg/index.html index 84e909e..043ba7b 100755 --- a/cyborg/index.html +++ b/cyborg/index.html @@ -51,7 +51,42 @@ Bootswatch diff --git a/default/index.html b/default/index.html index 4398e01..785a8e8 100755 --- a/default/index.html +++ b/default/index.html @@ -51,7 +51,42 @@ Bootswatch diff --git a/index.html b/index.html index 4685f6e..db7acd1 100644 --- a/index.html +++ b/index.html @@ -45,7 +45,32 @@ Bootswatch diff --git a/journal/index.html b/journal/index.html index b642e93..eb705be 100755 --- a/journal/index.html +++ b/journal/index.html @@ -51,7 +51,42 @@ Bootswatch diff --git a/js/application.js b/js/application.js index 675653a..670947c 100755 --- a/js/application.js +++ b/js/application.js @@ -1,48 +1,7 @@ -// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT -// IT'S ALL JUST JUNK FOR OUR DOCS! -// ++++++++++++++++++++++++++++++++++++++++++ - !function ($) { $(function(){ - // Disable certain links in docs - // $('section [href^=#]').click(function (e) { - // e.preventDefault() - // }) - - // make code pretty - // window.prettyPrint && prettyPrint() - // - // // add-ons - // $('.add-on :checkbox').on('click', function () { - // var $this = $(this) - // , method = $this.attr('checked') ? 'addClass' : 'removeClass' - // $(this).parents('.add-on')[method]('active') - // }) - - // position static twipsies for components page - // if ($(".twipsies a").length) { - // $(window).on('load resize', function () { - // $(".twipsies a").each(function () { - // $(this) - // .tooltip({ - // placement: $(this).attr('title') - // , trigger: 'manual' - // }) - // .tooltip('show') - // }) - // }) - // } - - // add tipsies to grid for scaffolding - // if ($('#grid-system').length) { - // $('#grid-system').tooltip({ - // selector: '.show-grid > div' - // , title: function () { return $(this).width() + 'px' } - // }) - // } - // fix sub nav on scroll var $win = $(window) , $nav = $('.subnav') @@ -65,117 +24,6 @@ } } - // tooltip demo - // $('.tooltip-demo.well').tooltip({ - // selector: "a[rel=tooltip]" - // }) - // - // $('.tooltip-test').tooltip() - // $('.popover-test').popover() - - // popover demo - // $("a[rel=popover]") - // .popover() - // .click(function(e) { - // e.preventDefault() - // }) - - // button state demo - // $('#fat-btn') - // .click(function () { - // var btn = $(this) - // btn.button('loading') - // setTimeout(function () { - // btn.button('reset') - // }, 3000) - // }) - - // carousel demo - // $('#myCarousel').carousel() - - // javascript build logic - // var inputsComponent = $("#components.download input") - // , inputsPlugin = $("#plugins.download input") - // , inputsVariables = $("#variables.download input") - - // toggle all plugin checkboxes - // $('#components.download .toggle-all').on('click', function (e) { - // e.preventDefault() - // inputsComponent.attr('checked', !inputsComponent.is(':checked')) - // }) - // - // $('#plugins.download .toggle-all').on('click', function (e) { - // e.preventDefault() - // inputsPlugin.attr('checked', !inputsPlugin.is(':checked')) - // }) - // - // $('#variables.download .toggle-all').on('click', function (e) { - // e.preventDefault() - // inputsVariables.val('') - // }) - - // request built javascript - // $('.download-btn').on('click', function () { - // - // var css = $("#components.download input:checked") - // .map(function () { return this.value }) - // .toArray() - // , js = $("#plugins.download input:checked") - // .map(function () { return this.value }) - // .toArray() - // , vars = {} - // , img = ['glyphicons-halflings.png', 'glyphicons-halflings-white.png'] - // - // $("#variables.download input") - // .each(function () { - // $(this).val() && (vars[ $(this).prev().text() ] = $(this).val()) - // }) - // - // $.ajax({ - // type: 'POST' - // , url: 'http://bootstrap.herokuapp.com' - // , dataType: 'jsonpi' - // , params: { - // js: js - // , css: css - // , vars: vars - // , img: img - // } - // }) - // }) - // - // }) - -// Modified from the original jsonpi https://github.com/benvinegar/jquery-jsonpi -// $.ajaxTransport('jsonpi', function(opts, originalOptions, jqXHR) { -// var url = opts.url; -// -// return { -// send: function(_, completeCallback) { -// var name = 'jQuery_iframe_' + jQuery.now() -// , iframe, form -// -// iframe = $('