Skip to content

Commit

Permalink
Switch to trashcan icon for deletion, refs #28
Browse files Browse the repository at this point in the history
  • Loading branch information
bergie committed Dec 1, 2013
1 parent 95088e8 commit 4c11356
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion elements/noflo-edge-menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<h1>{{ edges.length}} edges selected</h1>
<ul class="toolbar">
<li><button on-click="{{ clear }}"><i class="fa fa-check"></i></button></li>
<li><button on-click="{{ remove }}"><i class="fa fa-ban"></i></button></li>
<li><button on-click="{{ remove }}"><i class="fa fa-trash-o"></i></button></li>
</ul>
<ul class="routes">
<template repeat="{{ route in routes }}">
Expand Down
2 changes: 1 addition & 1 deletion elements/noflo-node-inspector.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ <h2>{{ node.component }}</h2>
</template>
</label>
<template if="{{ port.type != 'bang' && port.value != undefined }}">
<button data-port="{{ port.name }}" on-click="{{ removeValue }}"><i class="fa fa-ban"></i></button>
<button data-port="{{ port.name }}" on-click="{{ removeValue }}"><i class="fa fa-trash-o"></i></button>
</template>
</li>
</template>
Expand Down
2 changes: 1 addition & 1 deletion elements/noflo-node-menu.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<h1>{{ nodes.length}} nodes selected</h1>
<ul class="toolbar">
<li><button on-click="{{ clear }}"><i class="fa fa-check"></i></button></li>
<li><button on-click="{{ remove }}"><i class="fa fa-ban"></i></button></li>
<li><button on-click="{{ remove }}"><i class="fa fa-trash-o"></i></button></li>
</ul>
</template>
<script>
Expand Down

0 comments on commit 4c11356

Please sign in to comment.