mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 15:51:48 +03:00
html encode the url when it is written to the page
This commit is contained in:
parent
0b17291084
commit
b4bb454518
@ -139,7 +139,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
var displayFinalUrl = function(xhr, method, url, container) {
|
var displayFinalUrl = function(xhr, method, url, container) {
|
||||||
container.html(method + ' ' + url);
|
container.html(method + ' ' + $('<div>').text(url).html());
|
||||||
};
|
};
|
||||||
|
|
||||||
var displayResponseData = function(xhr, container) {
|
var displayResponseData = function(xhr, container) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user