Skip to content

Commit 462c7fd

Browse files
author
Nikolay Moskvin
committed
Fixed bootstrap modal popups
1 parent 5c15b79 commit 462c7fd

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

app/assets/javascripts/rails_admin/ra.remote-form.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,8 @@
123123
var widget = this;
124124
if (!widget.dialog) {
125125
widget.dialog = $('<div id="modal" class="modal fade">\
126+
<div class="modal-dialog">\
127+
<div class="modal-content">\
126128
<div class="modal-header">\
127129
<a href="#" class="close" data-dismiss="modal">&times;</a>\
128130
<h3 class="modal-header-title">...</h3>\
@@ -134,13 +136,15 @@
134136
<a href="#" class="btn cancel-action">...</a>\
135137
<a href="#" class="btn btn-primary save-action">...</a>\
136138
</div>\
139+
</div>\
140+
</div>\
137141
</div>')
138142
.modal({
139143
keyboard: true,
140144
backdrop: true,
141145
show: true
142146
})
143-
.on('hidden', function(){
147+
.on('hidden.bs.modal', function(){
144148
widget.dialog.remove(); // We don't want to reuse closed modals
145149
widget.dialog = null;
146150
});

app/assets/stylesheets/rails_admin/base/theming.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,10 @@ body.rails_admin {
173173
}
174174
}
175175

176-
.modal {
177-
width: 750px;
178-
margin-left: -375px;
179-
}
176+
// .modal {
177+
// width: 750px;
178+
// margin-left: -375px;
179+
// }
180180

181181
/* nested nav */
182182
.nav.nav-list {

0 commit comments

Comments
 (0)