diff options
author | Aleš Smodiš <aless@guru.si> | 2015-09-18 16:34:54 +0200 |
---|---|---|
committer | Aleš Smodiš <aless@guru.si> | 2015-09-18 16:34:54 +0200 |
commit | c922a97f9810321eb6812cf52c463454617b82d5 (patch) | |
tree | b671844725e887fad13bafbcfff95ceca0bd412a /js/codeq | |
parent | ea3d8109b4f90e83e5581f9434c828785c08d932 (diff) |
Don't crash loading a python problem, if the problem has no plan set.
Diffstat (limited to 'js/codeq')
-rw-r--r-- | js/codeq/python.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/codeq/python.js b/js/codeq/python.js index 1d4ee17..a8d4c95 100644 --- a/js/codeq/python.js +++ b/js/codeq/python.js @@ -321,7 +321,7 @@ editor.setValue(info.solution); $('#title').text(problem.slug); jqDescription.html(problem.description); - $('#btn_code_plan').prop('disabled', problem.plan.length == 0); + $('#btn_code_plan').prop('disabled', (problem.plan || '').length == 0); editor.on('change', function (instance, changeObj) { var doc = editor.getDoc(), |