fix summenote modals

This commit is contained in:
Yuri Kuznetsov
2014-04-29 17:03:13 +03:00
parent 042620a714
commit e4c8f930d8
3 changed files with 10 additions and 3 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
+4 -2
View File
@@ -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));
}
}
+5
View File
@@ -518,3 +518,8 @@ body > footer > p a:visited {
}
}
.modal.in .modal.in {
overflow: hidden !important;
overflow-y: visible !important;
}