2012-01-28 09:36:37 +01:00
|
|
|
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
|
|
|
|
// IT'S ALL JUST JUNK FOR OUR DOCS!
|
|
|
|
// ++++++++++++++++++++++++++++++++++++++++++
|
2011-12-22 03:42:43 +01:00
|
|
|
|
2012-01-28 09:36:37 +01:00
|
|
|
!function ($) {
|
2011-12-22 03:42:43 +01:00
|
|
|
|
2012-01-28 09:36:37 +01:00
|
|
|
$(function(){
|
2012-01-25 02:13:02 +01:00
|
|
|
|
2012-08-15 06:06:08 +02:00
|
|
|
var $window = $(window)
|
|
|
|
|
2012-01-28 09:36:37 +01:00
|
|
|
// Disable certain links in docs
|
2013-06-10 08:45:14 +02:00
|
|
|
$('[href=#]').click(function (e) {
|
2012-01-23 23:14:16 +01:00
|
|
|
e.preventDefault()
|
|
|
|
})
|
|
|
|
|
2013-03-31 03:41:26 +02:00
|
|
|
// back to top
|
2013-05-09 06:56:08 +02:00
|
|
|
setTimeout(function () {
|
2013-05-09 07:42:42 +02:00
|
|
|
$('.bs-sidebar').affix({
|
2013-05-09 06:56:08 +02:00
|
|
|
offset: {
|
|
|
|
top: function () { return $window.width() <= 980 ? 290 : 210 }
|
|
|
|
, bottom: 270
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}, 100)
|
2012-08-15 06:06:08 +02:00
|
|
|
|
2013-03-31 03:41:26 +02:00
|
|
|
setTimeout(function () {
|
2013-05-09 07:52:48 +02:00
|
|
|
$('.bs-top').affix()
|
2013-03-31 03:41:26 +02:00
|
|
|
}, 100)
|
|
|
|
|
2012-01-28 09:46:04 +01:00
|
|
|
// tooltip demo
|
2012-06-06 03:25:46 +02:00
|
|
|
$('.tooltip-demo').tooltip({
|
2013-07-25 20:55:12 +02:00
|
|
|
selector: "[data-toggle=tooltip]"
|
2012-01-28 09:46:04 +01:00
|
|
|
})
|
2012-01-27 01:12:34 +01:00
|
|
|
|
2012-01-28 21:08:41 +01:00
|
|
|
$('.tooltip-test').tooltip()
|
|
|
|
$('.popover-test').popover()
|
2012-01-28 09:46:04 +01:00
|
|
|
|
2013-03-28 07:33:45 +01:00
|
|
|
$('.bs-docs-navbar').tooltip({
|
|
|
|
selector: "a[data-toggle=tooltip]",
|
|
|
|
container: ".bs-docs-navbar .nav"
|
|
|
|
})
|
|
|
|
|
2012-01-28 09:46:04 +01:00
|
|
|
// popover demo
|
2012-12-23 12:51:46 +01:00
|
|
|
$("a[data-toggle=popover]")
|
2012-01-28 09:46:04 +01:00
|
|
|
.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
|
2013-02-16 11:47:15 +01:00
|
|
|
$('.bs-docs-carousel-example').carousel()
|
2012-01-28 09:46:04 +01:00
|
|
|
|
|
|
|
// javascript build logic
|
2013-05-24 06:34:32 +02:00
|
|
|
var inputsComponent = $("#less input")
|
2013-05-23 08:34:28 +02:00
|
|
|
, inputsPlugin = $("#plugins input")
|
2013-06-12 20:51:10 +02:00
|
|
|
, inputsVariables = $("#less-variables input")
|
2012-01-28 09:46:04 +01:00
|
|
|
|
|
|
|
// toggle all plugin checkboxes
|
2013-06-12 20:51:10 +02:00
|
|
|
$('#less .toggle').on('click', function (e) {
|
2012-01-28 09:46:04 +01:00
|
|
|
e.preventDefault()
|
2013-05-23 08:34:28 +02:00
|
|
|
inputsComponent.prop('checked', !inputsComponent.is(':checked'))
|
2012-01-28 09:46:04 +01:00
|
|
|
})
|
|
|
|
|
2013-05-23 08:34:28 +02:00
|
|
|
$('#plugins .toggle').on('click', function (e) {
|
2012-01-28 09:46:04 +01:00
|
|
|
e.preventDefault()
|
2013-05-23 08:34:28 +02:00
|
|
|
inputsPlugin.prop('checked', !inputsPlugin.is(':checked'))
|
2012-01-28 09:46:04 +01:00
|
|
|
})
|
|
|
|
|
2013-06-12 20:51:10 +02:00
|
|
|
$('#less-variables .toggle').on('click', function (e) {
|
2012-01-28 09:46:04 +01:00
|
|
|
e.preventDefault()
|
|
|
|
inputsVariables.val('')
|
|
|
|
})
|
|
|
|
|
|
|
|
// request built javascript
|
2013-06-12 21:40:37 +02:00
|
|
|
$('.bs-customize-download .btn').on('click', function (e) {
|
|
|
|
e.preventDefault()
|
2012-01-28 09:46:04 +01:00
|
|
|
|
2013-06-12 21:40:37 +02:00
|
|
|
var css = $("#less input:checked")
|
2012-01-28 09:46:04 +01:00
|
|
|
.map(function () { return this.value })
|
|
|
|
.toArray()
|
2013-05-23 08:34:28 +02:00
|
|
|
, js = $("#plugins input:checked")
|
2012-01-28 09:46:04 +01:00
|
|
|
.map(function () { return this.value })
|
|
|
|
.toArray()
|
|
|
|
, vars = {}
|
|
|
|
|
2013-06-12 21:40:37 +02:00
|
|
|
$("#less-variables input")
|
|
|
|
.each(function () {
|
|
|
|
$(this).val() && (vars[ $(this).prev().text() ] = $(this).val())
|
2012-01-28 09:46:04 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
type: 'POST'
|
2013-06-12 21:40:37 +02:00
|
|
|
, url: /localhost/.test(window.location) ? 'http://localhost:9001' : 'http://bootstrap.herokuapp.com'
|
2012-01-28 09:46:04 +01:00
|
|
|
, dataType: 'jsonpi'
|
|
|
|
, params: {
|
2012-02-02 07:30:51 +01:00
|
|
|
js: js
|
2012-01-28 09:46:04 +01:00
|
|
|
, css: css
|
|
|
|
, vars: vars
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
// 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 = $('<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', typeof v == 'string' ? v : JSON.stringify(v))
|
|
|
|
.appendTo(form)
|
|
|
|
})
|
|
|
|
|
|
|
|
form.appendTo('body').submit()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2012-01-28 09:36:37 +01:00
|
|
|
|
2012-12-23 12:51:46 +01:00
|
|
|
}(window.jQuery)
|