# HG changeset patch # User Sebastien Jodogne # Date 1351257491 -7200 # Node ID f2ae23682353b69ed31ddf90dcad9af31317a47d # Parent dcf6475e2b40f46a20ed136966af6cd6a2cb3992 fix diff -r dcf6475e2b40 -r f2ae23682353 OrthancExplorer/explorer.js --- a/OrthancExplorer/explorer.js Fri Oct 26 15:05:26 2012 +0200 +++ b/OrthancExplorer/explorer.js Fri Oct 26 15:18:11 2012 +0200 @@ -325,7 +325,9 @@ dataType: 'json', async: false, success: function(s) { - $('.orthanc-name').html('' + s.Name + ' » '); + if (s.Name != "") { + $('.orthanc-name').html('' + s.Name + ' » '); + } } }); });