Hopefully fix issue with clicking links in modal dialogs

This commit is contained in:
Szymon Nowak 2015-10-10 12:04:44 +02:00
parent f7718f1a47
commit e577b15713
3 changed files with 5 additions and 7 deletions

View File

@ -4,8 +4,6 @@ export default Ember.Component.extend({
actions: {
close: function () {
return this.sendAction();
},
nop: function () {}
}
}
});

View File

@ -10,6 +10,7 @@
.modal-body
position: absolute
z-index: 301
top: 10%
left: 0
right: 0

View File

@ -1,5 +1,4 @@
<div class="modal-overlay" {{action "close"}}>
<div class="modal-body" {{action "nop" bubbles=false preventDefault=true}}>
{{yield}}
</div>
<div class="modal-overlay" {{action "close"}}></div>
<div class="modal-body">
{{yield}}
</div>