X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/1e25937af74b242ba942a4784726d6b41a505ed3..1f9ac76cb2752e300e07f665dd6dcc71b07f6958:/redakcja/static/js/wiki/view_editor_wysiwyg.js diff --git a/redakcja/static/js/wiki/view_editor_wysiwyg.js b/redakcja/static/js/wiki/view_editor_wysiwyg.js index a661a1cd..2f4e43d4 100644 --- a/redakcja/static/js/wiki/view_editor_wysiwyg.js +++ b/redakcja/static/js/wiki/view_editor_wysiwyg.js @@ -313,12 +313,14 @@ if ($origin.is('.motyw')) { - $('textarea', $overlay).autocomplete('/themes', { - autoFill: true, - multiple: true, - selectFirst: true, - highlight: false - }); + withThemes(function(canonThemes){ + $('textarea', $overlay).autocomplete(canonThemes, { + autoFill: true, + multiple: true, + selectFirst: true, + highlight: false + }); + }) } if ($origin.is('.motyw')){ @@ -487,8 +489,9 @@ error: function(text){ /* only basic error message */ var errorArray = text.split("\n"); - var errorLocation = errorArray[2].split(":")[0]; - text = errorLocation; + if (errorArray.length >= 3) { + text = errorArray[2].split(":")[0]; + } $('#html-view').html('
WystÄ piÅ bÅÄ d: '+ text + '
'); _finalize(failure); }