parent
fcc1f866d5
commit
c612a862ff
@ -1,41 +0,0 @@ |
||||
// -- copyright
|
||||
// OpenProject is a project management system.
|
||||
// Copyright (C) 2012-2015 the OpenProject Foundation (OPF)
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public License version 3.
|
||||
//
|
||||
// OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
|
||||
// Copyright (C) 2006-2013 Jean-Philippe Lang
|
||||
// Copyright (C) 2010-2013 the ChiliProject Team
|
||||
//
|
||||
// This program is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU General Public License
|
||||
// as published by the Free Software Foundation; either version 2
|
||||
// of the License, or (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
//
|
||||
// See doc/COPYRIGHT.rdoc for more details.
|
||||
// ++
|
||||
|
||||
angular |
||||
.module('openproject.workPackages') |
||||
.factory('typesDropDownMenu', typesDropDownMenu); |
||||
|
||||
|
||||
function typesDropDownMenu(ngContextMenu) { |
||||
return ngContextMenu({ |
||||
templateUrl: '/components/context-menus/types-drop-down-menu/' + |
||||
'types-drop-down-menu.template.html', |
||||
|
||||
container: '.wp-create-button' |
||||
}); |
||||
} |
@ -1,13 +0,0 @@ |
||||
<div class="dropdown action-menu dropdown-relative dropdown-anchor-right dropdownToolbar" |
||||
id="tasksDropdown"> |
||||
|
||||
<ul class="dropdown-menu"> |
||||
<li ng-repeat="type in vm.types"> |
||||
<a ui-sref="{{ vm.stateName }}({ projectPath: vm.projectIdentifier, type: type.id })" |
||||
class="menu-item"> |
||||
|
||||
{{ type.name }} |
||||
</a> |
||||
</li> |
||||
</ul> |
||||
</div> |
@ -1,10 +1,9 @@ |
||||
<div class="wp-create-button"> |
||||
<button class="button -alt-highlight add-work-package" has-dropdown-menu |
||||
target="typesDropDownMenu" locals="vm" ng-disabled="vm.isDisabled()" |
||||
aria-label="{{ ::vm.text.create }}" aria-haspopup="true"> |
||||
<button class="button -alt-highlight add-work-package" |
||||
ng-disabled="vm.isDisabled()" |
||||
aria-label="{{ ::vm.text.create }}"> |
||||
|
||||
<i class="button--icon icon-add"></i> |
||||
<span class="button--text" ng-bind="::vm.text.button" aria-hidden="true"></span> |
||||
<i class="button--dropdown-indicator"></i> |
||||
</button> |
||||
</div> |
||||
|
Loading…
Reference in new issue