fix summenote modals
This commit is contained in:
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -102,8 +102,10 @@
|
||||
}
|
||||
|
||||
if (this.removeOnClose) {
|
||||
this.$el.on('hidden.bs.modal', function () {
|
||||
this.remove();
|
||||
this.$el.on('hidden.bs.modal', function (e) {
|
||||
if (this.$el.get(0) == e.target) {
|
||||
this.remove();
|
||||
}
|
||||
}.bind(this));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -518,3 +518,8 @@ body > footer > p a:visited {
|
||||
}
|
||||
}
|
||||
|
||||
.modal.in .modal.in {
|
||||
overflow: hidden !important;
|
||||
overflow-y: visible !important;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user