feat(replace): add titles to activity markers

Closes #372
This commit is contained in:
Ricardo Matias 2015-09-30 10:50:17 +02:00 committed by pedesen
parent fe7e8fe6d1
commit baab4c6039
1 changed files with 4 additions and 0 deletions

View File

@ -157,6 +157,7 @@ function BpmnReplace(bpmnFactory, moddle, popupMenu, replace, selection, modelin
{
id: 'toggle-parallel-mi',
className: 'icon-parallel-mi-marker',
title: 'Parallel Multi Instance',
active: isParallel,
action: toggleLoopEntry,
options: {
@ -167,6 +168,7 @@ function BpmnReplace(bpmnFactory, moddle, popupMenu, replace, selection, modelin
{
id: 'toggle-sequential-mi',
className: 'icon-sequential-mi-marker',
title: 'Sequential Multi Instance',
active: isSequential,
action: toggleLoopEntry,
options: {
@ -177,6 +179,7 @@ function BpmnReplace(bpmnFactory, moddle, popupMenu, replace, selection, modelin
{
id: 'toggle-loop',
className: 'icon-loop-marker',
title: 'Loop',
active: isLoop,
action: toggleLoopEntry,
options: {
@ -196,6 +199,7 @@ function BpmnReplace(bpmnFactory, moddle, popupMenu, replace, selection, modelin
var adHocEntry = {
id: 'toggle-adhoc',
className: 'icon-ad-hoc-marker',
title: 'Ad-hoc',
active: isAdHoc,
action: function(event, entry) {
if (isAdHoc) {