Skip to content

Commit a51e5e8

Browse files
committed
Merged in [19359] from rjsparks@nostrum.com:
Render markdown agendas in popups on the agenda page. Fixes ietf-tools#3039. - Legacy-Id: 19369 Note: SVN reference [19359] has been migrated to Git commit 7912d05
2 parents a789c2b + 7912d05 commit a51e5e8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/static/ietf/js/agenda/agenda_materials.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ var agenda_materials; // public interface
2727
output_elt.html("<p>Error: missing data-src attribute</p>");
2828
} else {
2929
output_elt.html("<p>Loading " + data_src + "...</p>");
30-
var outer_xhr = $.get(data_src)
30+
var outer_xhr = $.ajax({url:data_src,headers:{'Accept':'text/plain;q=0.8,text/html;q=0.9'}})
3131
outer_xhr.done(function(data, status, xhr) {
3232
var t = xhr.getResponseHeader("content-type");
3333
if (!t) {

0 commit comments

Comments
 (0)