2012-01-28 09:36:37 +01:00
|
|
|
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
|
|
|
|
// IT'S ALL JUST JUNK FOR OUR DOCS!
|
|
|
|
// ++++++++++++++++++++++++++++++++++++++++++
|
2013-10-17 23:11:40 +02:00
|
|
|
|
2013-10-17 20:33:04 +02:00
|
|
|
/*!
|
|
|
|
* Copyright 2013 Twitter, Inc.
|
2013-10-17 23:11:40 +02:00
|
|
|
*
|
|
|
|
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
|
|
|
|
* details, see http://creativecommons.org/licenses/by/3.0/.
|
2013-10-17 20:33:04 +02:00
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
2013-09-18 20:37:55 +02:00
|
|
|
$(function () {
|
2012-01-25 02:13:02 +01:00
|
|
|
|
2013-09-11 23:46:31 +02:00
|
|
|
// IE10 viewport hack for Surface/desktop Windows 8 bug
|
|
|
|
//
|
|
|
|
// See Getting Started docs for more information
|
|
|
|
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
|
|
|
|
var msViewportStyle = document.createElement("style");
|
|
|
|
msViewportStyle.appendChild(
|
|
|
|
document.createTextNode(
|
|
|
|
"@-ms-viewport{width:auto!important}"
|
|
|
|
)
|
|
|
|
);
|
|
|
|
document.getElementsByTagName("head")[0].
|
|
|
|
appendChild(msViewportStyle);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-15 06:06:08 +02:00
|
|
|
var $window = $(window)
|
2013-07-29 07:23:20 +02:00
|
|
|
var $body = $(document.body)
|
2012-08-15 06:06:08 +02:00
|
|
|
|
2013-07-27 04:25:45 +02:00
|
|
|
var navHeight = $('.navbar').outerHeight(true) + 10
|
|
|
|
|
2013-07-29 07:23:20 +02:00
|
|
|
$body.scrollspy({
|
2013-07-27 04:25:45 +02:00
|
|
|
target: '.bs-sidebar',
|
|
|
|
offset: navHeight
|
|
|
|
})
|
|
|
|
|
2013-08-12 00:03:48 +02:00
|
|
|
$window.on('load', function () {
|
|
|
|
$body.scrollspy('refresh')
|
|
|
|
})
|
|
|
|
|
2013-07-29 07:14:43 +02:00
|
|
|
$('.bs-docs-container [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-07-26 08:30:13 +02:00
|
|
|
var $sideBar = $('.bs-sidebar')
|
|
|
|
|
|
|
|
$sideBar.affix({
|
2013-05-09 06:56:08 +02:00
|
|
|
offset: {
|
2013-07-26 08:30:13 +02:00
|
|
|
top: function () {
|
|
|
|
var offsetTop = $sideBar.offset().top
|
|
|
|
var sideBarMargin = parseInt($sideBar.children(0).css('margin-top'), 10)
|
|
|
|
var navOuterHeight = $('.bs-docs-nav').height()
|
|
|
|
|
|
|
|
return (this.top = offsetTop - navOuterHeight - sideBarMargin)
|
|
|
|
}
|
|
|
|
, bottom: function () {
|
|
|
|
return (this.bottom = $('.bs-footer').outerHeight(true))
|
|
|
|
}
|
2013-05-09 06:56:08 +02:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}, 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-08-14 23:29:53 +02:00
|
|
|
selector: "[data-toggle=tooltip]",
|
|
|
|
container: "body"
|
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
|
2013-07-27 04:50:02 +02:00
|
|
|
$("[data-toggle=popover]")
|
2012-01-28 09:46:04 +01:00
|
|
|
.popover()
|
|
|
|
|
|
|
|
// button state demo
|
|
|
|
$('#fat-btn')
|
|
|
|
.click(function () {
|
|
|
|
var btn = $(this)
|
|
|
|
btn.button('loading')
|
|
|
|
setTimeout(function () {
|
|
|
|
btn.button('reset')
|
|
|
|
}, 3000)
|
|
|
|
})
|
2013-09-18 20:37:55 +02:00
|
|
|
})
|
2012-01-28 09:36:37 +01:00
|
|
|
|
2013-11-26 08:43:26 +01:00
|
|
|
}(jQuery)
|