From e9f80356a90135b21b4600d09ff303bb6c8f69f8 Mon Sep 17 00:00:00 2001 From: Yuko Okuyama Date: Wed, 6 Aug 2014 13:20:54 -0700 Subject: [PATCH] Fix blocker z-index issue To avoid modal going behind the blocker #70 --- jquery.modal.js | 1 + 1 file changed, 1 insertion(+) diff --git a/jquery.modal.js b/jquery.modal.js index 818805f..db14c51 100644 --- a/jquery.modal.js +++ b/jquery.modal.js @@ -41,6 +41,7 @@ } } else { this.$elm = el; + this.$body.append(this.$elm); this.open(); } };