kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
37 lines
1.3 KiB
11 years ago
|
<div class="title-container">
|
||
11 years ago
|
<div class="text">
|
||
|
<h2 title="{{ selectedTitle }}">
|
||
|
<span with-dropdown dropdown-id="querySelectDropdown" focus-element-id="title-filter">
|
||
10 years ago
|
<accessible-by-keyboard>
|
||
|
{{ selectedTitle | characters:50 }}<i class="icon-pulldown-arrow1 icon-button"></i>
|
||
|
</accessible-by-keyboard>
|
||
11 years ago
|
</span>
|
||
|
</h2>
|
||
|
</div>
|
||
11 years ago
|
|
||
11 years ago
|
<div class="dropdown dropdown-relative" id="querySelectDropdown">
|
||
11 years ago
|
<div class="search-query-wrapper">
|
||
11 years ago
|
<input type="search"
|
||
|
ng-model="filterBy"
|
||
|
ng-change="filterModels(filterBy)"
|
||
|
ng-keydown="handleSelection($event)"
|
||
|
id="title-filter"><i id="magnifier" class="icon-search"></i>
|
||
|
</input>
|
||
11 years ago
|
</div>
|
||
|
|
||
11 years ago
|
<div class="dropdown-scrollable">
|
||
|
<div class="query-menu-container" ng-if="group.models" ng-repeat="group in filteredGroups">
|
||
|
<ul class="query-menu">
|
||
|
<div class="title-group-header">{{ group.name }}</div>
|
||
10 years ago
|
<li ng-repeat="model in group.models"
|
||
|
ng-class="{'selected': model.highlighted }"
|
||
|
ui-sref="work-packages.list({ query_id: model.id, query_props: undefined })">
|
||
10 years ago
|
<a href title="{{ model.label }}" ng-bind-html="model.labelHtml"></a>
|
||
11 years ago
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
11 years ago
|
</div>
|
||
11 years ago
|
</div>
|
||
|
|
||
|
</div>
|