From deb069729cf08dc19ae1b995d8d604d203bffd60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9rgio=20Vieira?= Date: Thu, 2 Apr 2015 14:00:50 +0100 Subject: [PATCH] Changed the message shown while loading the swagger json document. --- dist/lib/swagger.utils.js | 4 +++- lib/swagger-client.js | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/dist/lib/swagger.utils.js b/dist/lib/swagger.utils.js index d8b053e1f9f..227249a5ec5 100644 --- a/dist/lib/swagger.utils.js +++ b/dist/lib/swagger.utils.js @@ -2074,7 +2074,9 @@ var SwaggerResource = function (resourceObj, api) { } else { this.url = this.api.basePath + this.path.replace('{format}', 'json'); } - this.api.progress('fetching resource ' + this.name + ': ' + this.url); + // Outsystems change: loading message + //this.api.progress('fetching resource ' + this.name + ': ' + this.url); + this.api.progress('Loading Documentation'); var obj = { url: this.url, method: 'GET', diff --git a/lib/swagger-client.js b/lib/swagger-client.js index 27b08f55a8a..ce05396b9fe 100644 --- a/lib/swagger-client.js +++ b/lib/swagger-client.js @@ -2046,7 +2046,9 @@ var SwaggerResource = function (resourceObj, api) { } else { this.url = this.api.basePath + this.path.replace('{format}', 'json'); } - this.api.progress('fetching resource ' + this.name + ': ' + this.url); + // Outsystems change: loading message + //this.api.progress('fetching resource ' + this.name + ': ' + this.url); + this.api.progress('Loading Documentation'); var obj = { url: this.url, method: 'GET',