]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
add build script for minified files and allow elements to be returned to getContent...
authorJacob Thornton <jacobthornton@gmail.com>
Mon, 21 Nov 2011 05:36:26 +0000 (21:36 -0800)
committerJacob Thornton <jacobthornton@gmail.com>
Mon, 21 Nov 2011 05:36:26 +0000 (21:36 -0800)
.gitignore
Makefile
js/bootstrap-popover.js

index 496ee2ca6a2f08396a4076fe43dedf3dc0da8b6d..38ad09099226bb6e730cb9c6083ba8a32ab6e4e3 100644 (file)
@@ -1 +1,2 @@
-.DS_Store
\ No newline at end of file
+.DS_Store
+js/min
\ No newline at end of file
index 294f0ed72e5c3cc6767383c8f3d91ce34a53c264..e5c083ae6f0a89f0c068e340f1bce225023195ef 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,7 @@ BOOTSTRAP = ./bootstrap.css
 BOOTSTRAP_MIN = ./bootstrap.min.css
 BOOTSTRAP_LESS = ./lib/bootstrap.less
 LESS_COMPESSOR ?= `which lessc`
+UGLIFY_JS ?= `which uglifyjs`
 WATCHR ?= `which watchr`
 
 build:
@@ -18,6 +19,24 @@ build:
                echo "You can install it by running: npm install less -g"; \
        fi
 
+uglify:
+       @@if test ! -z ${UGLIFY_JS}; then \
+               mkdir -p js/min; \
+               uglifyjs -o js/min/bootstrap-accordion.js js/bootstrap-accordion.js;\
+               uglifyjs -o js/min/bootstrap-alerts.js js/bootstrap-alerts.js;\
+               uglifyjs -o js/min/bootstrap-buttons.js js/bootstrap-buttons.js;\
+               uglifyjs -o js/min/bootstrap-dropdown.js js/bootstrap-dropdown.js;\
+               uglifyjs -o js/min/bootstrap-modal.js js/bootstrap-modal.js;\
+               uglifyjs -o js/min/bootstrap-popover.js js/bootstrap-popover.js;\
+               uglifyjs -o js/min/bootstrap-scrollspy.js js/bootstrap-scrollspy.js;\
+               uglifyjs -o js/min/bootstrap-tabs.js js/bootstrap-tabs.js;\
+               uglifyjs -o js/min/bootstrap-transitions.js js/bootstrap-transitions.js;\
+               uglifyjs -o js/min/bootstrap-twipsy.js js/bootstrap-twipsy.js;\
+       else \
+               echo "You must have the UGLIFYJS minifier installed in order to minify Bootstrap's js."; \
+               echo "You can install it by running: npm install uglify-js -g"; \
+       fi
+
 watch:
        @@if test ! -z ${WATCHR}; then \
          echo "Watching less files..."; \
index d0bd83131788f319dc5e17d17ca7f38d9356fb7a..934ab0545334c274ed845d1aa2fe80b185f02f2e 100644 (file)
 
     setContent: function () {
       var $tip = this.tip()
-      $tip.find('.title')['html'](this.getTitle())
-      $tip.find('.content > *')['html'](this.getContent())
+        , title = this.getTitle()
+        , content = this.getContent()
+
+      $tip.find('.title')[ $.type(title) == 'object' ? 'append' : 'html' ](title)
+      $tip.find('.content > *')[ $.type(content) == 'object' ? 'append' : 'html' ](content)
+
       $tip[0].className = 'popover'
     }