changeset 167:9bb7e8277e15

merge
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 26 Oct 2012 15:19:47 +0200
parents 91ed72ab2b05 (current diff) f2ae23682353 (diff)
children 262505043929
files Resources/Configuration.json
diffstat 3 files changed, 5 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Fri Oct 26 15:03:17 2012 +0200
+++ b/CMakeLists.txt	Fri Oct 26 15:19:47 2012 +0200
@@ -4,7 +4,7 @@
 
 # Version of the build, should always be "mainline" except in release branches
 add_definitions(
-  -DORTHANC_VERSION="mainline"
+  -DORTHANC_VERSION="0.2.3"
   )
 
 # Parameters of the build
--- a/OrthancExplorer/explorer.js	Fri Oct 26 15:03:17 2012 +0200
+++ b/OrthancExplorer/explorer.js	Fri Oct 26 15:19:47 2012 +0200
@@ -325,7 +325,9 @@
     dataType: 'json',
     async: false,
     success: function(s) {
-      $('.orthanc-name').html('<a class="ui-link" href="explorer.html">' + s.Name + '</a> &raquo; ');
+      if (s.Name != "") {
+        $('.orthanc-name').html('<a class="ui-link" href="explorer.html">' + s.Name + '</a> &raquo; ');
+      }
     }
   });
 });
--- a/Resources/Configuration.json	Fri Oct 26 15:03:17 2012 +0200
+++ b/Resources/Configuration.json	Fri Oct 26 15:19:47 2012 +0200
@@ -11,6 +11,7 @@
     "Name" : "MyOrthanc",
 
 
+
     /**
      * Configuration of the HTTP server
      **/