application.js 4.27 KB
Newer Older
1
2
3
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
// IT'S ALL JUST JUNK FOR OUR DOCS!
// ++++++++++++++++++++++++++++++++++++++++++
4

5
!function ($) {
6

7
  $(function(){
Jacob Thornton's avatar
Jacob Thornton committed
8

9
10
    var $window = $(window)

fat's avatar
fat committed
11
12
13
14
15
16
17
    var navHeight = $('.navbar').outerHeight(true) + 10

    $(document.body).scrollspy({
      target: '.bs-sidebar',
      offset: navHeight
    })

18
    // Disable certain links in docs
19
    $('.bs-docs-container [href=#]').click(function (e) {
20
21
22
      e.preventDefault()
    })

fat's avatar
fat committed
23
24
25
26
27
28
29
30
31
32
    $(document.body).on('click', '[href^=#]', function (e) {

      var $target = $(this.getAttribute('href'))

      e.preventDefault() // prevent browser scroll

      document.body.scrollTop =
        $target.offset().top -
        navHeight + 5 // offset scroll by nav
    })
fat's avatar
fat committed
33

34
    // back to top
Mark Otto's avatar
Mark Otto committed
35
    setTimeout(function () {
fat's avatar
fat committed
36
37
38
      var $sideBar = $('.bs-sidebar')

      $sideBar.affix({
Mark Otto's avatar
Mark Otto committed
39
        offset: {
fat's avatar
fat committed
40
41
42
43
44
45
46
47
48
49
          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))
          }
Mark Otto's avatar
Mark Otto committed
50
51
52
        }
      })
    }, 100)
53

54
    setTimeout(function () {
Mark Otto's avatar
Mark Otto committed
55
      $('.bs-top').affix()
56
57
    }, 100)

Jacob Thornton's avatar
Jacob Thornton committed
58
    // tooltip demo
59
    $('.tooltip-demo').tooltip({
60
      selector: "[data-toggle=tooltip]"
Jacob Thornton's avatar
Jacob Thornton committed
61
    })
62

63
64
    $('.tooltip-test').tooltip()
    $('.popover-test').popover()
Jacob Thornton's avatar
Jacob Thornton committed
65

Mark Otto's avatar
Mark Otto committed
66
67
68
69
70
    $('.bs-docs-navbar').tooltip({
      selector: "a[data-toggle=tooltip]",
      container: ".bs-docs-navbar .nav"
    })

Jacob Thornton's avatar
Jacob Thornton committed
71
    // popover demo
72
    $("a[data-toggle=popover]")
Jacob Thornton's avatar
Jacob Thornton committed
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
      .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
89
    $('.bs-docs-carousel-example').carousel()
Jacob Thornton's avatar
Jacob Thornton committed
90
91

    // javascript build logic
Mark Otto's avatar
Mark Otto committed
92
    var inputsComponent = $("#less input")
93
      , inputsPlugin = $("#plugins input")
94
      , inputsVariables = $("#less-variables input")
Jacob Thornton's avatar
Jacob Thornton committed
95
96

    // toggle all plugin checkboxes
97
    $('#less .toggle').on('click', function (e) {
Jacob Thornton's avatar
Jacob Thornton committed
98
      e.preventDefault()
99
      inputsComponent.prop('checked', !inputsComponent.is(':checked'))
Jacob Thornton's avatar
Jacob Thornton committed
100
101
    })

102
    $('#plugins .toggle').on('click', function (e) {
Jacob Thornton's avatar
Jacob Thornton committed
103
      e.preventDefault()
104
      inputsPlugin.prop('checked', !inputsPlugin.is(':checked'))
Jacob Thornton's avatar
Jacob Thornton committed
105
106
    })

107
    $('#less-variables .toggle').on('click', function (e) {
Jacob Thornton's avatar
Jacob Thornton committed
108
109
110
111
112
      e.preventDefault()
      inputsVariables.val('')
    })

    // request built javascript
113
114
    $('.bs-customize-download .btn').on('click', function (e) {
      e.preventDefault()
Jacob Thornton's avatar
Jacob Thornton committed
115

116
      var css = $("#less input:checked")
Jacob Thornton's avatar
Jacob Thornton committed
117
118
            .map(function () { return this.value })
            .toArray()
119
        , js = $("#plugins input:checked")
Jacob Thornton's avatar
Jacob Thornton committed
120
121
122
123
            .map(function () { return this.value })
            .toArray()
        , vars = {}

124
125
126
      $("#less-variables input")
        .each(function () {
          $(this).val() && (vars[ $(this).prev().text() ] = $(this).val())
Jacob Thornton's avatar
Jacob Thornton committed
127
128
129
130
      })

      $.ajax({
        type: 'POST'
131
      , url: /localhost/.test(window.location) ? 'http://localhost:9001' : 'http://bootstrap.herokuapp.com'
Jacob Thornton's avatar
Jacob Thornton committed
132
133
      , dataType: 'jsonpi'
      , params: {
Jacob Thornton's avatar
Jacob Thornton committed
134
          js: js
Jacob Thornton's avatar
Jacob Thornton committed
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
        , 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()
    }
  }
})
173

174
}(window.jQuery)