-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implemented select/deselect option for tags dropup in graph editor #138
Changes from 3 commits
cc8f287
8ac336c
ea0273d
18ae8af
5f7f8d5
8696877
7e41be9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,6 +115,12 @@ <h6> | |
<ul | ||
class="dropdown-menu" | ||
ng-show="isVisible('resource_types')"> | ||
<li ng-click="onSelectAll('resource_types', allSelected ? false : true, $event)"> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just curious - why do There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No particular reason I didn't think of that, but that is a bit cleaner I'll change it. |
||
<strong class="text-dark">Select All</strong> | ||
<span ng-show="allSelected"> | ||
<svg class="checked" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z"/></svg> | ||
</span> | ||
</li> | ||
<li | ||
class='text-dark' | ||
ng-repeat="item in selectorService.options.resource_types" | ||
|
@@ -144,6 +150,12 @@ <h6> | |
<ul | ||
class="dropdown-menu" | ||
ng-show="isVisible('packages')"> | ||
<li ng-click="onSelectAll('packages', allSelected ? false : true, $event)"> | ||
<strong class="text-dark">Select All</strong> | ||
<span ng-show="allSelected"> | ||
<svg class="checked" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z"/></svg> | ||
</span> | ||
</li> | ||
<li | ||
class='text-dark' | ||
ng-repeat="item in selectorService.options.packages" | ||
|
@@ -173,6 +185,12 @@ <h6> | |
<ul | ||
class="dropdown-menu" | ||
ng-show="isVisible('tags')"> | ||
<li ng-click="onSelectAll('tags', allSelected ? false : true, $event)"> | ||
<strong class="text-dark">Select All</strong> | ||
<span ng-show="allSelected"> | ||
<svg class="checked" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z"/></svg> | ||
</span> | ||
</li> | ||
<li | ||
class='text-dark' | ||
ng-repeat="item in selectorService.options.tags" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you just add yourself as a contributor in the existing section below? Looks like we have two contributor sections for the 0.19.0 release now :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahh, yep just corrected it thanks.