Skip to content

Commit

Permalink
Update dist from 0.23.4 to 0.23.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmartel committed Jun 7, 2018
1 parent 54aff48 commit 5682fd9
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
13 changes: 12 additions & 1 deletion dist/dwv.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ dwv.App = function ()
var infoController = null;

// Dicom tags gui
var tags = null;
var tagsGui = null;

// Drawing list gui
Expand Down Expand Up @@ -862,6 +863,15 @@ dwv.App = function ()
return drawController.getDrawDisplayDetails();
};

/**
* Get the data tags.
* @return {Object} The list of DICOM tags.
*/
this.getTags = function ()
{
return tags;
};

/**
* Get a list of drawing store details.
* @return {Object} A list of draw details including id, text, quant...
Expand Down Expand Up @@ -1428,6 +1438,7 @@ dwv.App = function ()
viewController = new dwv.ViewController(view);

// append the DICOM tags table
tags = data.info;
if ( tagsGui ) {
tagsGui.update(data.info);
}
Expand Down Expand Up @@ -3040,7 +3051,7 @@ dwv.dicom = dwv.dicom || {};
* Get the version of the library.
* @return {String} The version of the library.
*/
dwv.getVersion = function () { return "0.23.4"; };
dwv.getVersion = function () { return "0.23.5"; };

/**
* Clean string: trim and remove ending.
Expand Down
4 changes: 2 additions & 2 deletions dist/dwv.min.js

Large diffs are not rendered by default.

0 comments on commit 5682fd9

Please sign in to comment.