Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion common/static/js/src/accessibility_tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ var accessible_modal = function(trigger, closeButtonId, modalId, mainPageId) {
$("#lean_overlay, " + closeButtonId).click(function(){
$(mainPageId).attr("aria-hidden", "false");
$(modalId).attr("aria-hidden", "true");
focusedElementBeforeModal.focus()
focusedElementBeforeModal.focus();
});

// get modal to exit on escape key
Expand All @@ -107,6 +107,18 @@ var accessible_modal = function(trigger, closeButtonId, modalId, mainPageId) {
$(closeButtonId).click();
}
});

// In IE, focus shifts to iframes when they load.
// These lines ensure that focus is shifted back to the close button
// in the case that a modal that contains an iframe is opened in IE.
// see http://stackoverflow.com/questions/15792620/how-to-get-focus-back-for-parent-window-from-an-iframe-programmatically-in-javas
var initialFocus = true
$(modalId).find("iframe").on("focus", function() {
if (initialFocus) {
$(closeButtonId).focus();
initialFocus = false;
};
});
});
};

Expand Down
6 changes: 3 additions & 3 deletions lms/templates/wiki/history.html
Original file line number Diff line number Diff line change
Expand Up @@ -72,21 +72,21 @@
tr.equal td {
background-color: #F2F2F2;
}

.diff-container td {
white-space: pre; font-family: monospace;
}
.diff-container td,
.diff-container th {
padding: 2px 7px;
border-right: 1px solid #DDD;
border-right: 1px solid #DDD;
}
.diff-container td:last-child,
.diff-container th:last-child {
border-right: none;
}
.diff-container table {
border-top: 1px solid #DDD;
border-top: 1px solid #DDD;
}
</style>
{% endaddtoblock %}
Expand Down