Merge branch 'master' of git@github.com:fnp/redakcja
[redakcja.git] / redakcja / static / js / wiki / view_editor_wysiwyg.js
index a661a1c..ad48a21 100644 (file)
             $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();
         
         
         
 
         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')){
                 _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('<p class="error">Wystąpił błąd: '+ text + '</p>');
+                $('#html-view').html('<p class="error">Wystąpił błąd:</p><pre>'+text+'</pre>');
                 _finalize(failure);
             }
         });