application.js 3.47 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)

11
    // Disable certain links in docs
12
    $('[href=#]').click(function (e) {
13
14
15
      e.preventDefault()
    })

16
    // back to top
Mark Otto's avatar
Mark Otto committed
17
    setTimeout(function () {
18
      $('.bs-sidebar').affix({
Mark Otto's avatar
Mark Otto committed
19
20
21
22
23
24
        offset: {
          top: function () { return $window.width() <= 980 ? 290 : 210 }
        , bottom: 270
        }
      })
    }, 100)
25

26
    setTimeout(function () {
Mark Otto's avatar
Mark Otto committed
27
      $('.bs-top').affix()
28
29
    }, 100)

Jacob Thornton's avatar
Jacob Thornton committed
30
    // tooltip demo
31
    $('.tooltip-demo').tooltip({
32
      selector: "[data-toggle=tooltip]"
Jacob Thornton's avatar
Jacob Thornton committed
33
    })
34

35
36
    $('.tooltip-test').tooltip()
    $('.popover-test').popover()
Jacob Thornton's avatar
Jacob Thornton committed
37

Mark Otto's avatar
Mark Otto committed
38
39
40
41
42
    $('.bs-docs-navbar').tooltip({
      selector: "a[data-toggle=tooltip]",
      container: ".bs-docs-navbar .nav"
    })

Jacob Thornton's avatar
Jacob Thornton committed
43
    // popover demo
44
    $("a[data-toggle=popover]")
Jacob Thornton's avatar
Jacob Thornton committed
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
      .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
61
    $('.bs-docs-carousel-example').carousel()
Jacob Thornton's avatar
Jacob Thornton committed
62
63

    // javascript build logic
Mark Otto's avatar
Mark Otto committed
64
    var inputsComponent = $("#less input")
65
      , inputsPlugin = $("#plugins input")
66
      , inputsVariables = $("#less-variables input")
Jacob Thornton's avatar
Jacob Thornton committed
67
68

    // toggle all plugin checkboxes
69
    $('#less .toggle').on('click', function (e) {
Jacob Thornton's avatar
Jacob Thornton committed
70
      e.preventDefault()
71
      inputsComponent.prop('checked', !inputsComponent.is(':checked'))
Jacob Thornton's avatar
Jacob Thornton committed
72
73
    })

74
    $('#plugins .toggle').on('click', function (e) {
Jacob Thornton's avatar
Jacob Thornton committed
75
      e.preventDefault()
76
      inputsPlugin.prop('checked', !inputsPlugin.is(':checked'))
Jacob Thornton's avatar
Jacob Thornton committed
77
78
    })

79
    $('#less-variables .toggle').on('click', function (e) {
Jacob Thornton's avatar
Jacob Thornton committed
80
81
82
83
84
      e.preventDefault()
      inputsVariables.val('')
    })

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

88
      var css = $("#less input:checked")
Jacob Thornton's avatar
Jacob Thornton committed
89
90
            .map(function () { return this.value })
            .toArray()
91
        , js = $("#plugins input:checked")
Jacob Thornton's avatar
Jacob Thornton committed
92
93
94
95
            .map(function () { return this.value })
            .toArray()
        , vars = {}

96
97
98
      $("#less-variables input")
        .each(function () {
          $(this).val() && (vars[ $(this).prev().text() ] = $(this).val())
Jacob Thornton's avatar
Jacob Thornton committed
99
100
101
102
      })

      $.ajax({
        type: 'POST'
103
      , url: /localhost/.test(window.location) ? 'http://localhost:9001' : 'http://bootstrap.herokuapp.com'
Jacob Thornton's avatar
Jacob Thornton committed
104
105
      , dataType: 'jsonpi'
      , params: {
Jacob Thornton's avatar
Jacob Thornton committed
106
          js: js
Jacob Thornton's avatar
Jacob Thornton committed
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
        , 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()
    }
  }
})
145

146
}(window.jQuery)