From fb8987148aeae4b9aa2b4c28fa3ad5346b8c56b1 Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Tue, 6 Sep 2011 23:20:56 -0700 Subject: move javascript from examples into docs --- examples/assets/css/bootstrap-js.css | 36 --- examples/assets/js/bootstrap-alerts.js | 72 ------ examples/assets/js/bootstrap-dropdown.js | 24 -- examples/assets/js/bootstrap-modal.js | 157 ----------- examples/assets/js/bootstrap-popover.js | 67 ----- examples/assets/js/bootstrap-twipsy.js | 288 --------------------- .../assets/js/google-code-prettify/prettify.css | 41 --- .../assets/js/google-code-prettify/prettify.js | 28 -- 8 files changed, 713 deletions(-) delete mode 100644 examples/assets/css/bootstrap-js.css delete mode 100644 examples/assets/js/bootstrap-alerts.js delete mode 100644 examples/assets/js/bootstrap-dropdown.js delete mode 100644 examples/assets/js/bootstrap-modal.js delete mode 100644 examples/assets/js/bootstrap-popover.js delete mode 100644 examples/assets/js/bootstrap-twipsy.js delete mode 100644 examples/assets/js/google-code-prettify/prettify.css delete mode 100644 examples/assets/js/google-code-prettify/prettify.js (limited to 'examples/assets') diff --git a/examples/assets/css/bootstrap-js.css b/examples/assets/css/bootstrap-js.css deleted file mode 100644 index 1c741e3cb..000000000 --- a/examples/assets/css/bootstrap-js.css +++ /dev/null @@ -1,36 +0,0 @@ -body { - padding-bottom: 60px; -} -/* Topbar special styles --------------------------------------------------- */ -div.topbar-wrapper { - position: relative; - height: 40px; - margin: 5px 0 15px; -} -div.topbar-wrapper div.topbar { - position: absolute; - margin: 0 -20px; -} - -div.topbar-wrapper div.topbar .fill { - padding-left: 20px; - padding-right: 20px; - -webkit-border-radius: 4px; - -moz-border-radius: 4px; - border-radius: 4px; -} - -div.topbar-wrapper .container { - width: auto; -} - -/* Pretty Print --------------------------------------------------- */ -PRE.prettyprint { - overflow: hidden; -} - -section { - padding-top: 60px; -} \ No newline at end of file diff --git a/examples/assets/js/bootstrap-alerts.js b/examples/assets/js/bootstrap-alerts.js deleted file mode 100644 index e27ac6482..000000000 --- a/examples/assets/js/bootstrap-alerts.js +++ /dev/null @@ -1,72 +0,0 @@ -(function( $ ){ - - /* CSS TRANSITION SUPPORT (https://gist.github.com/373874) - * ======================================================= */ - - var transitionEnd - - $(function () { - - $.support.transition = (function () { - var thisBody = document.body || document.documentElement - , thisStyle = thisBody.style - , support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined - return support - })() - - // set CSS transition event type - if ( $.support.transition ) { - transitionEnd = "TransitionEnd" - if ( $.browser.webkit ) { - transitionEnd = "webkitTransitionEnd" - } else if ( $.browser.mozilla ) { - transitionEnd = "transitionend" - } else if ( $.browser.opera ) { - transitionEnd = "oTransitionEnd" - } - } - - }) - - /* ALERT CLASS DEFINITION - * ====================== */ - - var Alert = function ( content ) { - var that = this - this.$element = $(content) - this.$element.delegate('.close', 'click', function (e) { - e.preventDefault() - that.close() - }) - } - - Alert.prototype = { - - close: function () { - var that = this - - this.$element.removeClass('in') - - function removeElement () { - that.$element.remove() - that.$element = null - } - - $.support.transition && this.$element.hasClass('fade') ? - this.$element.bind(transitionEnd, removeElement) : - removeElement() - } - - } - - - /* ALERT PLUGIN DEFINITION - * ======================= */ - - $.fn.alert = function ( options ) { - return this.each(function () { - new Alert(this) - }) - } - -})( jQuery || ender ) \ No newline at end of file diff --git a/examples/assets/js/bootstrap-dropdown.js b/examples/assets/js/bootstrap-dropdown.js deleted file mode 100644 index 9fbeb44b0..000000000 --- a/examples/assets/js/bootstrap-dropdown.js +++ /dev/null @@ -1,24 +0,0 @@ -(function( $ ){ - - /* DROPDOWN PLUGIN DEFINITION - * ========================== */ - - function clearMenus() { - $('a.menu').parent('li').removeClass('open') - } - - $(function () { - $('body').bind("click", clearMenus) - }) - - $.fn.dropdown = function ( options ) { - return this.each(function () { - $(this).delegate('a.menu', 'click', function (e) { - clearMenus() - $(this).parent('li').toggleClass('open') - return false - }) - }) - } - -})( jQuery || ender ) \ No newline at end of file diff --git a/examples/assets/js/bootstrap-modal.js b/examples/assets/js/bootstrap-modal.js deleted file mode 100644 index 4bc395e1c..000000000 --- a/examples/assets/js/bootstrap-modal.js +++ /dev/null @@ -1,157 +0,0 @@ -(function( $ ){ - - /* CSS TRANSITION SUPPORT (https://gist.github.com/373874) - * ======================================================= */ - - var transitionEnd - - $(function () { - - $.support.transition = (function () { - var thisBody = document.body || document.documentElement - , thisStyle = thisBody.style - , support = thisStyle.transition !== undefined || thisStyle.WebkitTransition !== undefined || thisStyle.MozTransition !== undefined || thisStyle.MsTransition !== undefined || thisStyle.OTransition !== undefined - return support - })() - - // set CSS transition event type - if ( $.support.transition ) { - transitionEnd = "TransitionEnd" - if ( $.browser.webkit ) { - transitionEnd = "webkitTransitionEnd" - } else if ( $.browser.mozilla ) { - transitionEnd = "transitionend" - } else if ( $.browser.opera ) { - transitionEnd = "oTransitionEnd" - } - } - - }) - - - /* MODAL PUBLIC CLASS DEFINITION - * ============================= */ - - var Modal = function ( options ) { - this.settings = $.extend({}, $.fn.modal.defaults) - - if ( typeof options == 'string' ) { - this.settings.content = options - } else if ( options ) { - $.extend( this.settings, options ) - } - - return this - } - - Modal.prototype = { - - toggle: function () { - return this[!this.isOpen ? 'open' : 'close']() - } - - , open: function () { - var that = this - this.isOpen = true - - this.$element = $(this.settings.content) - - _.escape.call(this) - _.backdrop.call(this) - - this.$element - .delegate('.close', 'click', function (e) { e.preventDefault(); that.close() }) - .appendTo(document.body) - .show() - - setTimeout(function () { - that.$element.addClass('in') - that.$backdrop && that.$backdrop.addClass('in') - }, 1) - - return this - } - - , close: function () { - var that = this - - this.isOpen = false - - _.escape.call(this) - _.backdrop.call(this) - - this.$element.removeClass('in') - - function removeElement () { - that.$element.remove() - that.$element = null - } - - $.support.transition && this.$element.hasClass('fade') ? - this.$element.bind(transitionEnd, removeElement) : - removeElement() - - return this - } - - } - - - /* MODAL PRIVATE METHODS - * ===================== */ - - var _ = { - - backdrop: function () { - var that = this - , animate = this.$element.hasClass('fade') ? 'fade' : '' - if ( this.isOpen && this.settings.backdrop ) { - this.$backdrop = $('