提交 | 用户 | 时间
|
1ac2bc
|
1 |
<span ng-click="group.expanded = !group.expanded"> |
懒 |
2 |
<i class="glyphicon" |
|
3 |
ng-class="{'glyphicon-chevron-right': !group.expanded, 'glyphicon-chevron-down': group.expanded}"></i> |
|
4 |
{{group.name}} |
|
5 |
</span> |
|
6 |
|
|
7 |
<!-- Child groups --> |
|
8 |
<ul ng-repeat="group in group.groups" |
|
9 |
class="stencil-group stencil-group-non-root" |
|
10 |
ng-class="{collapsed: !group.expanded, 'first': $first}" |
|
11 |
ng-include="'editor-app/partials/stencil-item-template.html?version=4'"> |
|
12 |
</ul> |
|
13 |
|
|
14 |
<!-- Group items --> |
|
15 |
<ul> |
|
16 |
<li ng-repeat="item in group.paletteItems" class="stencil-item" |
|
17 |
id="{{item.id}}" |
|
18 |
title="{{item.description}}" |
|
19 |
ng-model="draggedElement" |
|
20 |
data-drag="true" |
|
21 |
jqyoui-draggable="{onStart:'startDragCallback', onDrag:'dragCallback'}" |
|
22 |
data-jqyoui-options="{revert: 'invalid', helper: 'clone', opacity : 0.5}"> |
|
23 |
|
|
24 |
<img ng-src="editor-app/stencilsets/bpmn2.0/icons/{{item.icon}}" width="16px;" height="16px;"/> |
|
25 |
{{item.name}} |
|
26 |
</li> |
|
27 |
</ul> |