From 13a59a0124c31c94fdfd4f770da506bae5dc147a Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Sun, 20 Nov 2011 21:45:09 -0800 Subject: [PATCH] remove js min from repo --- .gitignore | 1 + Makefile | 4 ++-- js/min/bootstrap-alerts.min.js | 18 ------------------ js/min/bootstrap-buttons.min.js | 18 ------------------ js/min/bootstrap-dropdown.min.js | 18 ------------------ js/min/bootstrap-modal.min.js | 18 ------------------ js/min/bootstrap-popover.min.js | 18 ------------------ js/min/bootstrap-scrollspy.min.js | 18 ------------------ js/min/bootstrap-tabs.min.js | 18 ------------------ js/min/bootstrap-twipsy.min.js | 19 ------------------- 10 files changed, 3 insertions(+), 147 deletions(-) delete mode 100644 js/min/bootstrap-alerts.min.js delete mode 100644 js/min/bootstrap-buttons.min.js delete mode 100644 js/min/bootstrap-dropdown.min.js delete mode 100644 js/min/bootstrap-modal.min.js delete mode 100644 js/min/bootstrap-popover.min.js delete mode 100644 js/min/bootstrap-scrollspy.min.js delete mode 100644 js/min/bootstrap-tabs.min.js delete mode 100644 js/min/bootstrap-twipsy.min.js diff --git a/.gitignore b/.gitignore index fa611d84b2..6bc915a8ee 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ *~ .DS_Store thumbs.db +js/min \ No newline at end of file diff --git a/Makefile b/Makefile index 940a4388d3..0ccb680e6c 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ LESS_COMPRESSOR ?= `which lessc` UGLIFY_JS ?= `which uglifyjs` WATCHR ?= `which watchr` -build: uglify +build: @@if test ! -z ${LESS_COMPRESSOR}; then \ sed -e 's/@VERSION/'"v${VERSION}"'/' -e 's/@DATE/'"${DATE}"'/' <${BOOTSTRAP_LESS} >${BOOTSTRAP_LESS}.tmp; \ lessc ${BOOTSTRAP_LESS}.tmp > ${BOOTSTRAP}; \ @@ -19,7 +19,7 @@ build: uglify echo "You can install it by running: npm install less -g"; \ fi -uglify: +js/min: @@if test ! -z ${UGLIFY_JS}; then \ mkdir -p js/min; \ uglifyjs -o js/min/bootstrap-alerts.min.js js/bootstrap-alerts.js;\ diff --git a/js/min/bootstrap-alerts.min.js b/js/min/bootstrap-alerts.min.js deleted file mode 100644 index cc81a52400..0000000000 --- a/js/min/bootstrap-alerts.min.js +++ /dev/null @@ -1,18 +0,0 @@ -/* ========================================================== - * bootstrap-alerts.js v1.4.0 - * http://twitter.github.com/bootstrap/javascript.html#alerts - * ========================================================== - * Copyright 2011 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ========================================================== */!function(a){"use strict";var b;a(document).ready(function(){a.support.transition=function(){var a=document.body||document.documentElement,b=a.style,c=b.transition!==undefined||b.WebkitTransition!==undefined||b.MozTransition!==undefined||b.MsTransition!==undefined||b.OTransition!==undefined;return c}(),a.support.transition&&(b="TransitionEnd",a.browser.webkit?b="webkitTransitionEnd":a.browser.mozilla?b="transitionend":a.browser.opera&&(b="oTransitionEnd"))});var c=function(b,c){if(c=="close")return this.close.call(b);this.settings=a.extend({},a.fn.alert.defaults,c),this.$element=a(b).delegate(this.settings.selector,"click",this.close)};c.prototype={close:function(c){function f(){d.remove()}var d=a(this),e="alert-message";d=d.hasClass(e)?d:d.parent(),c&&c.preventDefault(),d.removeClass("in"),a.support.transition&&d.hasClass("fade")?d.bind(b,f):f()}},a.fn.alert=function(b){return b===!0?this.data("alert"):this.each(function(){var d=a(this),e;if(typeof b=="string"){e=d.data("alert");if(typeof e=="object")return e[b].call(d)}a(this).data("alert",new c(this,b))})},a.fn.alert.defaults={selector:".close"},a(document).ready(function(){new c(a("body"),{selector:".alert-message[data-alert] .close"})})}(window.jQuery||window.ender); \ No newline at end of file diff --git a/js/min/bootstrap-buttons.min.js b/js/min/bootstrap-buttons.min.js deleted file mode 100644 index a9655d901a..0000000000 --- a/js/min/bootstrap-buttons.min.js +++ /dev/null @@ -1,18 +0,0 @@ -/* ============================================================ - * bootstrap-buttons.js v1.4.0 - * http://twitter.github.com/bootstrap/javascript.html#buttons - * ============================================================ - * Copyright 2011 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============================================================ */!function(a){function b(b,c){var d="disabled",e=a(b),f=e.data();c+="Text",f.resetText||e.data("resetText",e.html()),e.html(f[c]||a.fn.button.defaults[c]),c=="loadingText"?e.addClass(d).attr(d,d):e.removeClass(d).removeAttr(d)}function c(b){a(b).toggleClass("active")}"use strict",a.fn.button=function(a){return this.each(function(){if(a=="toggle")return c(this);a&&b(this,a)})},a.fn.button.defaults={loadingText:"loading..."},a(function(){a("body").delegate(".btn[data-toggle]","click",function(){a(this).button("toggle")})})}(window.jQuery||window.ender); \ No newline at end of file diff --git a/js/min/bootstrap-dropdown.min.js b/js/min/bootstrap-dropdown.min.js deleted file mode 100644 index 774c6a6460..0000000000 --- a/js/min/bootstrap-dropdown.min.js +++ /dev/null @@ -1,18 +0,0 @@ -/* ============================================================ - * bootstrap-dropdown.js v1.4.0 - * http://twitter.github.com/bootstrap/javascript.html#dropdown - * ============================================================ - * Copyright 2011 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ============================================================ */!function(a){function c(){a(b).parent("li").removeClass("open")}"use strict",a.fn.dropdown=function(e){return this.each(function(){a(this).delegate(e||b,"click",function(b){var d=a(this).parent("li"),e=d.hasClass("open");return c(),!e&&d.toggleClass("open"),!1})})};var b="a.menu, .dropdown-toggle";a(function(){a("html").bind("click",c),a("body").dropdown("[data-dropdown] a.menu, [data-dropdown] .dropdown-toggle")})}(window.jQuery||window.ender); \ No newline at end of file diff --git a/js/min/bootstrap-modal.min.js b/js/min/bootstrap-modal.min.js deleted file mode 100644 index 9c19e03b0c..0000000000 --- a/js/min/bootstrap-modal.min.js +++ /dev/null @@ -1,18 +0,0 @@ -/* ========================================================= - * bootstrap-modal.js v1.4.0 - * http://twitter.github.com/bootstrap/javascript.html#modal - * ========================================================= - * Copyright 2011 Twitter, Inc. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ========================================================= */!function(a){function d(){var a=this,c=setTimeout(function(){a.$element.unbind(b),e.call(a)},500);this.$element.one(b,function(){clearTimeout(c),e.call(a)})}function e(a){this.$element.hide().trigger("hidden"),f.call(this)}function f(c){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.settings.backdrop){var f=a.support.transition&&e;this.$backdrop=a('