Change icon for non-target tool and remove length tool

This commit is contained in:
Rob Lewis 2015-11-10 09:25:44 -05:00
parent 60afb178e8
commit 48c22bda06

View File

@ -39,16 +39,9 @@ Template.viewerMain.helpers({
iconClasses: 'fa fa-bars'
});
buttonData.push({
id: 'length',
title: 'Length Measurement',
classes: 'imageViewerTool',
iconClasses: 'fa fa-arrows-v'
});
buttonData.push({
id: 'lesion',
title: 'Lesion Tool',
title: 'Target Tool',
classes: 'imageViewerTool',
iconClasses: 'fa fa-arrows-alt'
});
@ -57,7 +50,7 @@ Template.viewerMain.helpers({
id: 'nonTarget',
title: 'Non-Target Tool',
classes: 'imageViewerTool',
iconClasses: 'fa fa-arrows-v'
iconClasses: 'fa fa-long-arrow-up'
});
toolbarOptions.buttonData = buttonData;