Fix small typo.

This commit is contained in:
Jan Philipp Timme 2018-03-13 12:02:18 +01:00
parent 9a2355497d
commit 32cd367a1e
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
"use strict";
function loadMdFromUrl(url) {
$.get(url, function(date) {
$.get(url, function(data) {
var converter = new showdown.Converter();
var html = converter.makeHtml(text);
var html = converter.makeHtml(data);
$("#markdown-content").html(html);
});