Merge pull request #3803 from edx/release

Release
This commit is contained in:
Adam
2014-05-21 12:52:18 -04:00
2 changed files with 5 additions and 2 deletions

View File

@@ -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');
};

View File

@@ -517,7 +517,7 @@
visibility: hidden;
pointer-events: none;
display: none;
position: absolute;
position: fixed;
top: 0;
overflow: scroll;
background: $black-t2;