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:
authorJacob Thornton <jacobthornton@gmail.com>2012-01-09 02:38:21 +0400
committerJacob Thornton <jacobthornton@gmail.com>2012-01-09 02:38:21 +0400
commitaa0c4acd80562645ae85ef9a76f6b45e778d7acd (patch)
tree2f2575ab7e27024ff1a65f8fbcc3c8dd384d9f08 /js/bootstrap-modal.js
parent76cadd1d2a493d4cbcfe8acd984bd4f908b25abf (diff)
fix modal insertion boolean
Diffstat (limited to 'js/bootstrap-modal.js')
-rw-r--r--js/bootstrap-modal.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/bootstrap-modal.js b/js/bootstrap-modal.js
index 670d55c4ec..df4f3c7643 100644
--- a/js/bootstrap-modal.js
+++ b/js/bootstrap-modal.js
@@ -51,7 +51,7 @@
backdrop.call(this, function () {
var transition = $.support.transition && that.$element.hasClass('fade')
- !that.$element.parent() && that.$element.appendTo(document.body) //don't move modals dom position
+ !that.$element.parent().length && that.$element.appendTo(document.body) //don't move modals dom position
that.$element
.show()