- var message = $('<pre></pre>');
- message.text(text);
- $('#html-view').html('<p class="error">Wystąpił błąd:</p><pre>' +
- message.html() +
- '</pre>');
+ /* 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>');