Commit 2124571c by Adam

Merge pull request #3803 from edx/release

Release
parents c8ce4a54 8813c045
......@@ -36,7 +36,10 @@ define(["domReady", "jquery", "jquery.ui", "underscore", "gettext", "js/views/fe
};
var closeModalNew = function () {
var closeModalNew = function (e) {
if (e) {
e.preventDefault();
};
$('body').removeClass('modal-window-is-shown');
$('.edit-section-publish-settings').removeClass('is-shown');
};
......
......@@ -517,7 +517,7 @@
visibility: hidden;
pointer-events: none;
display: none;
position: absolute;
position: fixed;
top: 0;
overflow: scroll;
background: $black-t2;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment