2011-10-20 06:56:06 +02:00
|
|
|
$(function(){
|
2011-05-05 09:59:16 +02:00
|
|
|
|
2011-12-22 03:42:43 +01:00
|
|
|
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
|
|
|
|
// IT'S ALL JUST JUNK FOR OUR DOCS!
|
|
|
|
// ++++++++++++++++++++++++++++++++++++++++++
|
2011-07-02 06:37:12 +02:00
|
|
|
|
2012-01-06 01:03:05 +01:00
|
|
|
|
2011-12-21 23:22:20 +01:00
|
|
|
// Hide the Mobile Safari address bar once loaded
|
|
|
|
// ==============================================
|
|
|
|
|
2011-12-23 04:15:09 +01:00
|
|
|
// Set a timeout...
|
2012-01-06 06:43:28 +01:00
|
|
|
// setTimeout(function(){
|
|
|
|
// // Hide the address bar!
|
|
|
|
// window.scrollTo(0, 1);
|
|
|
|
// }, 0);
|
2011-12-21 23:22:20 +01:00
|
|
|
|
2012-01-06 01:03:05 +01:00
|
|
|
|
2011-06-28 01:47:12 +02:00
|
|
|
// table sort example
|
2011-07-02 06:37:12 +02:00
|
|
|
// ==================
|
|
|
|
|
2011-12-22 03:42:43 +01:00
|
|
|
// make code pretty
|
2011-12-23 04:17:41 +01:00
|
|
|
window.prettyPrint && prettyPrint()
|
2011-05-05 09:59:16 +02:00
|
|
|
|
2011-12-22 03:42:43 +01:00
|
|
|
// table sort example
|
2012-01-24 22:11:09 +01:00
|
|
|
if ($.fn.tablesorter) {
|
2011-12-22 03:42:43 +01:00
|
|
|
$("#sortTableExample").tablesorter( { sortList: [[ 1, 0 ]] } )
|
2012-01-24 00:17:32 +01:00
|
|
|
$(".tablesorter-example").tablesorter({ sortList: [[1,0]] })
|
2011-12-22 03:42:43 +01:00
|
|
|
}
|
2011-07-02 06:37:12 +02:00
|
|
|
|
|
|
|
// add on logic
|
2011-12-22 03:42:43 +01:00
|
|
|
$('.add-on :checkbox').on('click', function () {
|
|
|
|
var $this = $(this)
|
|
|
|
, method = $this.attr('checked') ? 'addClass' : 'removeClass'
|
|
|
|
$(this).parents('.add-on')[method]('active')
|
2011-09-09 05:21:03 +02:00
|
|
|
})
|
2011-07-02 06:30:12 +02:00
|
|
|
|
2011-07-01 00:56:25 +02:00
|
|
|
// Disable certain links in docs
|
2011-12-22 03:42:43 +01:00
|
|
|
// Please do not carry these styles over to your projects
|
|
|
|
// it's merely here to prevent button clicks form taking you
|
|
|
|
// away from your spot on page!!
|
2011-07-02 06:37:12 +02:00
|
|
|
|
2012-01-21 05:05:16 +01:00
|
|
|
$('section [href^=#]').click(function (e) {
|
2011-09-09 05:21:03 +02:00
|
|
|
e.preventDefault()
|
|
|
|
})
|
2011-05-05 09:59:16 +02:00
|
|
|
|
2011-06-30 19:40:28 +02:00
|
|
|
// Copy code blocks in docs
|
2011-12-22 03:42:43 +01:00
|
|
|
$(".copy-code").on('focus', function () {
|
|
|
|
var el = this
|
|
|
|
setTimeout(function () { $(el).select() }, 0)
|
2011-09-11 07:54:47 +02:00
|
|
|
})
|
2011-12-22 03:42:43 +01:00
|
|
|
|
2012-01-12 06:42:55 +01:00
|
|
|
if ($.fn.tooltip) {
|
2011-12-22 03:42:43 +01:00
|
|
|
|
|
|
|
// position static twipsies for components page
|
|
|
|
if ($(".twipsies a").length) {
|
|
|
|
$(window).on('load resize', function () {
|
|
|
|
$(".twipsies a").each(function () {
|
|
|
|
$(this)
|
2012-01-12 06:42:55 +01:00
|
|
|
.tooltip({
|
2011-12-22 03:42:43 +01:00
|
|
|
placement: $(this).attr('title')
|
|
|
|
, trigger: 'manual'
|
|
|
|
})
|
2012-01-12 06:42:55 +01:00
|
|
|
.tooltip('show')
|
2011-12-22 03:42:43 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// add tipsies to grid for scaffolding
|
|
|
|
if ($('#grid-system').length) {
|
|
|
|
|
2012-01-12 06:42:55 +01:00
|
|
|
$('#grid-system').tooltip({
|
2011-12-22 03:42:43 +01:00
|
|
|
selector: '.show-grid > div'
|
|
|
|
, title: function () { return $(this).width() + 'px' }
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-27 01:12:34 +01:00
|
|
|
|
2012-01-25 02:13:02 +01:00
|
|
|
// fix sub nav playa
|
|
|
|
var $win = $(window)
|
2012-01-25 04:19:50 +01:00
|
|
|
, $nav = $('.subnav')
|
2012-01-25 07:33:33 +01:00
|
|
|
, navTop = $('.subnav').length && $('.subnav').offset().top - 40
|
2012-01-25 02:13:02 +01:00
|
|
|
, isFixed = 0
|
|
|
|
|
|
|
|
processScroll()
|
|
|
|
|
|
|
|
$win.on('scroll', processScroll)
|
|
|
|
|
|
|
|
function processScroll() {
|
|
|
|
var i, scrollTop = $win.scrollTop()
|
|
|
|
if (scrollTop >= navTop && !isFixed) {
|
|
|
|
isFixed = 1
|
|
|
|
$nav.addClass('subnav-fixed')
|
|
|
|
} else if (scrollTop <= navTop && isFixed) {
|
|
|
|
isFixed = 0
|
|
|
|
$nav.removeClass('subnav-fixed')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-23 04:15:09 +01:00
|
|
|
})
|
2012-01-12 06:42:55 +01:00
|
|
|
|
2012-01-23 23:14:16 +01:00
|
|
|
// JS for javascript demos
|
|
|
|
$(function () {
|
|
|
|
// tooltip demo
|
|
|
|
$('.tooltip-demo.well').tooltip({
|
|
|
|
selector: "a[rel=tooltip]"
|
|
|
|
})
|
|
|
|
$('.tooltip-test').tooltip()
|
|
|
|
|
|
|
|
// 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()
|
|
|
|
})
|
|
|
|
|
2012-01-12 06:42:55 +01:00
|
|
|
|
|
|
|
// Modified from the original jsonpi https://github.com/benvinegar/jquery-jsonpi
|
|
|
|
// by the talented Ben Vinegar
|
|
|
|
!function($) {
|
2012-01-23 23:14:16 +01:00
|
|
|
$.ajaxTransport('jsonpi', function(opts, originalOptions, jqXHR) {
|
|
|
|
var url = opts.url;
|
|
|
|
|
|
|
|
return {
|
|
|
|
send: function(_, completeCallback) {
|
|
|
|
var name = 'jQuery_iframe_' + jQuery.now()
|
|
|
|
, iframe, form
|
|
|
|
|
|
|
|
iframe = $('<iframe>')
|
|
|
|
.attr('name', name)
|
|
|
|
.appendTo('head')
|
|
|
|
|
|
|
|
form = $('<form>')
|
|
|
|
.attr('method', opts.type) // GET or POST
|
|
|
|
.attr('action', url)
|
|
|
|
.attr('target', name)
|
|
|
|
|
|
|
|
$.each(opts.params, function(k, v) {
|
|
|
|
$('<input>')
|
|
|
|
.attr('type', 'hidden')
|
|
|
|
.attr('name', k)
|
|
|
|
.attr('value', v)
|
|
|
|
.appendTo(form)
|
|
|
|
});
|
|
|
|
|
|
|
|
form.appendTo('body').submit()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2012-01-27 01:12:34 +01:00
|
|
|
}(jQuery);
|
|
|
|
|
|
|
|
// javascript build logic
|
|
|
|
|
|
|
|
$(function () {
|
|
|
|
|
|
|
|
var inputsComponent = $("#components.download input")
|
|
|
|
, inputsPlugin = $("#plugins.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'))
|
|
|
|
})
|
|
|
|
|
|
|
|
// request built javascript
|
|
|
|
$('.download-btn').on('click', function () {
|
|
|
|
|
2012-01-27 01:41:28 +01:00
|
|
|
var css = $("#components.download input:checked")
|
2012-01-27 01:12:34 +01:00
|
|
|
.map(function () { return this.value })
|
|
|
|
.toArray()
|
2012-01-27 01:41:28 +01:00
|
|
|
, js = $("#plugins.download input:checked")
|
2012-01-27 01:12:34 +01:00
|
|
|
.map(function () { return this.value })
|
|
|
|
.toArray()
|
2012-01-27 01:41:28 +01:00
|
|
|
, vars = {}
|
2012-01-27 01:12:34 +01:00
|
|
|
|
2012-01-27 01:41:28 +01:00
|
|
|
$("#variables.download input")
|
|
|
|
.each(function () {
|
|
|
|
return $(this).val()
|
|
|
|
})
|
2012-01-27 01:12:34 +01:00
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST'
|
2012-01-27 01:41:28 +01:00
|
|
|
, url: 'localhost:3000'
|
|
|
|
// , url: "http://bootstrap.herokuapp.com"
|
2012-01-27 01:12:34 +01:00
|
|
|
, dataType: 'jsonpi'
|
|
|
|
, params: {
|
|
|
|
branch: '2.0-wip'
|
2012-01-27 01:41:28 +01:00
|
|
|
, js: js
|
|
|
|
, css: css
|
|
|
|
, vars: vars
|
|
|
|
}
|
2012-01-27 01:12:34 +01:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
})
|
|
|
|
|