X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/780ab9457100da7f96656a9bf97cb512b5c69a6e..1024e7820ecb22cde464da17ae22b161adf75c3b:/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 5fcca87e..ad48a21c 100644 --- a/redakcja/static/js/wiki/view_editor_wysiwyg.js +++ b/redakcja/static/js/wiki/view_editor_wysiwyg.js @@ -44,7 +44,7 @@ } /* Convert HTML fragment to plaintext */ - var ANNOT_FORBIDDEN = ['pt', 'pa', 'pr', 'pe', 'begin', 'end', 'theme']; + var ANNOT_FORBIDDEN = ['pt', 'pa', 'pr', 'pe', 'begin', 'end', 'motyw']; function html2plainText(fragment){ var text = ""; @@ -289,8 +289,8 @@ $box = $origin; } - /* always stick to the left to avoid interfering with gallery */ - var x = 20; + /* check sidebar width and display textarea on the right but avoiding interfering with gallery */ + var x = $(document).width() - $("#sidebar").width() - 576 - 100; // and little margin here: 100px var y = $origin.offset().top + $("#html-view").scrollTop(); @@ -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')){ @@ -485,11 +487,7 @@ _finalize(success); }, error: function(text){ - /* only basic error message */ - var errorArray = text.split("\n"); - var errorLocation = errorArray[2].split(":")[0]; - text = errorLocation; - $('#html-view').html('

Wystąpił błąd: '+ text + '

'); + $('#html-view').html('

Wystąpił błąd:

'+text+'
'); _finalize(failure); } });