Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <otto@github.com>2013-02-06 10:17:28 +0400
committerMark Otto <otto@github.com>2013-02-06 10:17:28 +0400
commit0fe9148b91eff50b83100b6795fb49cf894caed1 (patch)
treeb8de9833bfbe2b50c094011cbf4c37be20eddaee /docs/assets/js/bootstrap-popover.js
parent6a9cd513c02a6c156769d54910f1d3931da3e568 (diff)
Fixes #6190: Add print utility classes
Diffstat (limited to 'docs/assets/js/bootstrap-popover.js')
-rw-r--r--docs/assets/js/bootstrap-popover.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/assets/js/bootstrap-popover.js b/docs/assets/js/bootstrap-popover.js
index ca0b5eb6b9..0e7774bf66 100644
--- a/docs/assets/js/bootstrap-popover.js
+++ b/docs/assets/js/bootstrap-popover.js
@@ -58,8 +58,8 @@
, $e = this.$element
, o = this.options
- content = $e.attr('data-content')
- || (typeof o.content == 'function' ? o.content.call($e[0]) : o.content)
+ content = (typeof o.content == 'function' ? o.content.call($e[0]) : o.content)
+ || $e.attr('data-content')
return content
}
@@ -111,4 +111,4 @@
return this
}
-}(window.jQuery); \ No newline at end of file
+}(window.jQuery);