summaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/api-documentation/action-view.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/api-documentation/action-view.js')
-rw-r--r--server/sonar-web/src/main/js/apps/api-documentation/action-view.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/api-documentation/action-view.js b/server/sonar-web/src/main/js/apps/api-documentation/action-view.js
index 9374cca1eb2..99896b6d850 100644
--- a/server/sonar-web/src/main/js/apps/api-documentation/action-view.js
+++ b/server/sonar-web/src/main/js/apps/api-documentation/action-view.js
@@ -57,7 +57,7 @@ export default Marionette.ItemView.extend({
fetchResponse: function () {
var that = this,
- url = baseUrl + '/api/webservices/response_example',
+ url = '/api/webservices/response_example',
options = { controller: this.model.get('path'), action: this.model.get('key') };
return $.get(url, options).done(function (r) {
that.model.set({ responseExample: r.example });