Skip to content

Commit

Permalink
Changed the message shown while loading the swagger json document.
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioVieiraXpandIT committed Apr 2, 2015
1 parent 0e8c266 commit deb0697
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion dist/lib/swagger.utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
4 changes: 3 additions & 1 deletion lib/swagger-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit deb0697

Please sign in to comment.