Skip to content

Commit

Permalink
ESGFBrowser now displays errors
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenplieger committed Nov 13, 2018
1 parent 7afb3b2 commit ffea663
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions fileviewer/fileviewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -928,9 +928,14 @@ var FileViewerInterface = function(options){
service.getCapabilities(function(){
service.getLayerNames(
function(data){httpCallbackWMSCapabilities(data,WMSGetCapabiltiesURL);},
function(error){console.log(error);});
function(error){console.log(error);
handleErrorMessage({error:error});
});
},
function(error){
console.log(error);
handleErrorMessage({error:error});
},
function(error){console.log(error);},
true
);

Expand Down

0 comments on commit ffea663

Please sign in to comment.