Skip to content

Commit

Permalink
get the js working for docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fat committed Aug 13, 2015
1 parent 575a886 commit 23d05f1
Show file tree
Hide file tree
Showing 8 changed files with 87 additions and 8 deletions.
3 changes: 0 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ module.exports = function (grunt) {
},

// JS build configuration

lineremover: {
es6Import: {
files: {
Expand Down Expand Up @@ -201,9 +200,7 @@ module.exports = function (grunt) {
files: 'js/tests/index.html'
},


// CSS build configuration

scsslint: {
options: {
config: 'scss/.scsslint.yml',
Expand Down
2 changes: 1 addition & 1 deletion docs/assets/css/docs.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/assets/css/docs.min.css.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion docs/assets/js/docs.min.js

Large diffs are not rendered by default.

78 changes: 78 additions & 0 deletions docs/assets/js/src/application.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT
// IT'S ALL JUST JUNK FOR OUR DOCS!
// ++++++++++++++++++++++++++++++++++++++++++

/*!
* JavaScript for Bootstrap's docs (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under the Creative Commons Attribution 3.0 Unported License. For
* details, see https://creativecommons.org/licenses/by/3.0/.
*/

/* global ZeroClipboard, anchors */

!function ($) {
'use strict';

$(function () {

// Tooltip and popover demos
$('.tooltip-demo').tooltip({
selector: '[data-toggle="tooltip"]',
container: 'body'
})

$('[data-toggle="popover"]').popover()

// Demos within modals
$('.tooltip-test').tooltip()
$('.popover-test').popover()

// Config ZeroClipboard
ZeroClipboard.config({
moviePath: '/assets/flash/ZeroClipboard.swf',
hoverClass: 'btn-clipboard-hover'
})

// Insert copy to clipboard button before .highlight
$('.highlight').each(function () {
var btnHtml = '<div class="zero-clipboard"><span class="btn-clipboard">Copy</span></div>'
$(this).before(btnHtml)
})
var zeroClipboard = new ZeroClipboard($('.btn-clipboard'))
var $htmlBridge = $('#global-zeroclipboard-html-bridge')

// Handlers for ZeroClipboard
zeroClipboard.on('load', function () {
$htmlBridge
.data('placement', 'top')
.attr('title', 'Copy to clipboard')
.tooltip()

// Copy to clipboard
zeroClipboard.on('dataRequested', function (client) {
var highlight = $(this).parent().nextAll('.highlight').first()
client.setText(highlight.text())
})

// Notify copy success and reset tooltip title
zeroClipboard.on('complete', function () {
$htmlBridge
.attr('title', 'Copied!')
.tooltip('fixTitle')
.tooltip('show')
.attr('title', 'Copy to clipboard')
.tooltip('fixTitle')
})
})

// Hide copy button when no Flash is found
// or wrong Flash version is present
zeroClipboard.on('noflash wrongflash', function () {
$('.zero-clipboard').remove()
ZeroClipboard.destroy()
})

})

}(jQuery)
2 changes: 2 additions & 0 deletions docs/assets/js/vendor/tether.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions grunt/configBridge.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"assets/js/vendor/jekyll-search.js",
"../assets/js/vendor/ZeroClipboard.min.js",
"../assets/js/vendor/anchor.js",
"../assets/js/vendor/tether.min.js",
"../assets/js/src/application.js"
]
},
Expand Down
4 changes: 2 additions & 2 deletions js/tests/vendor/tether.min.js

Large diffs are not rendered by default.

0 comments on commit 23d05f1

Please sign in to comment.