application.js 4.15 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
    var $window = $(window)
Jacob Thornton's avatar
Jacob Thornton committed
10
    var $body   = $(document.body)
11

fat's avatar
fat committed
12
13
    var navHeight = $('.navbar').outerHeight(true) + 10

Jacob Thornton's avatar
Jacob Thornton committed
14
    $body.scrollspy({
fat's avatar
fat committed
15
16
17
18
      target: '.bs-sidebar',
      offset: navHeight
    })

Jacob Thornton's avatar
Jacob Thornton committed
19
    $('.bs-docs-container [href=#]').click(function (e) {
20
21
22
      e.preventDefault()
    })

Jacob Thornton's avatar
Jacob Thornton committed
23
    $body.on('click', '.bs-sidenav [href^=#]', function (e) {
fat's avatar
fat committed
24
25
      var $target = $(this.getAttribute('href'))

Jacob Thornton's avatar
Jacob Thornton committed
26
      e.preventDefault() // prevent browser scroll
fat's avatar
fat committed
27

Jacob Thornton's avatar
Jacob Thornton committed
28
      $window.scrollTop($target.offset().top - navHeight + 5)
fat's avatar
fat committed
29
    })
fat's avatar
fat committed
30

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

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

51
    setTimeout(function () {
Mark Otto's avatar
Mark Otto committed
52
      $('.bs-top').affix()
53
54
    }, 100)

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

60
61
    $('.tooltip-test').tooltip()
    $('.popover-test').popover()
Jacob Thornton's avatar
Jacob Thornton committed
62

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

Jacob Thornton's avatar
Jacob Thornton committed
68
    // popover demo
69
    $("[data-toggle=popover]")
Jacob Thornton's avatar
Jacob Thornton committed
70
71
72
73
74
75
76
77
78
79
80
81
82
      .popover()

    // button state demo
    $('#fat-btn')
      .click(function () {
        var btn = $(this)
        btn.button('loading')
        setTimeout(function () {
          btn.button('reset')
        }, 3000)
      })

    // carousel demo
83
    $('.bs-docs-carousel-example').carousel()
Jacob Thornton's avatar
Jacob Thornton committed
84
85

    // javascript build logic
Mark Otto's avatar
Mark Otto committed
86
    var inputsComponent = $("#less input")
87
      , inputsPlugin = $("#plugins input")
88
      , inputsVariables = $("#less-variables input")
Jacob Thornton's avatar
Jacob Thornton committed
89
90

    // toggle all plugin checkboxes
91
    $('#less .toggle').on('click', function (e) {
Jacob Thornton's avatar
Jacob Thornton committed
92
      e.preventDefault()
93
      inputsComponent.prop('checked', !inputsComponent.is(':checked'))
Jacob Thornton's avatar
Jacob Thornton committed
94
95
    })

96
    $('#plugins .toggle').on('click', function (e) {
Jacob Thornton's avatar
Jacob Thornton committed
97
      e.preventDefault()
98
      inputsPlugin.prop('checked', !inputsPlugin.is(':checked'))
Jacob Thornton's avatar
Jacob Thornton committed
99
100
    })

101
    $('#less-variables .toggle').on('click', function (e) {
Jacob Thornton's avatar
Jacob Thornton committed
102
103
104
105
106
      e.preventDefault()
      inputsVariables.val('')
    })

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

110
      var css = $("#less input:checked")
Jacob Thornton's avatar
Jacob Thornton committed
111
112
            .map(function () { return this.value })
            .toArray()
113
        , js = $("#plugins input:checked")
Jacob Thornton's avatar
Jacob Thornton committed
114
115
116
117
            .map(function () { return this.value })
            .toArray()
        , vars = {}

118
119
120
      $("#less-variables input")
        .each(function () {
          $(this).val() && (vars[ $(this).prev().text() ] = $(this).val())
Jacob Thornton's avatar
Jacob Thornton committed
121
122
123
124
      })

      $.ajax({
        type: 'POST'
125
      , url: /localhost/.test(window.location) ? 'http://localhost:9001' : 'http://bootstrap.herokuapp.com'
Jacob Thornton's avatar
Jacob Thornton committed
126
127
      , dataType: 'jsonpi'
      , params: {
Jacob Thornton's avatar
Jacob Thornton committed
128
          js: js
Jacob Thornton's avatar
Jacob Thornton committed
129
130
131
132
133
134
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
        , 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()
    }
  }
})
167

168
}(window.jQuery)