- 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>');
+ error: function(text, source){
+ $('#html-view').html('<p class="error">Wystąpił błąd:</p><p>'+text+'</p><pre>'+source.replace(/&/g, '&').replace(/</g, '<')+'</pre>');