From 5aead9c680979180d8588d2ca93c581e3648997b Mon Sep 17 00:00:00 2001 From: Jason Park Date: Sat, 21 May 2016 03:45:43 -0500 Subject: [PATCH] rename config.json to desc.json --- js/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/script.js b/js/script.js index be10e75..9d01105 100644 --- a/js/script.js +++ b/js/script.js @@ -56,7 +56,7 @@ var loadAlgorithm = function (category, algorithm) { codeEditor.setValue(''); var dir = './algorithm/' + category + '/' + algorithm + '/'; - $.getJSON(dir + 'config.json', function (data) { + $.getJSON(dir + 'desc.json', function (data) { $('#desc_def').html(data.def); $('#desc_app').empty(); data.apps.forEach(function (app) { -- GitLab