summaryrefslogtreecommitdiff
path: root/assets/js/bootstrap-tooltip.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/js/bootstrap-tooltip.js')
-rwxr-xr-xassets/js/bootstrap-tooltip.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/assets/js/bootstrap-tooltip.js b/assets/js/bootstrap-tooltip.js
index 21f2311f..49b5f728 100755
--- a/assets/js/bootstrap-tooltip.js
+++ b/assets/js/bootstrap-tooltip.js
@@ -1,5 +1,5 @@
/* ===========================================================
- * bootstrap-tooltip.js v2.0.0
+ * bootstrap-tooltip.js v2.0.2
* http://twitter.github.com/bootstrap/javascript.html#tooltips
* Inspired by the original jQuery.tipsy by Jason Frame
* ===========================================================
@@ -206,7 +206,7 @@
title = $e.attr('data-original-title')
|| (typeof o.title == 'function' ? o.title.call($e[0]) : o.title)
- title = title.toString().replace(/(^\s*|\s*$)/, "")
+ title = (title || '').toString().replace(/(^\s*|\s*$)/, "")
return title
}
@@ -267,4 +267,4 @@
, template: '<div class="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>'
}
-}( window.jQuery )
+}( window.jQuery ); \ No newline at end of file