Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_sidebar_todo.html.haml « issuable « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b77e104c07252156648e12ba41eb512417366f56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- is_collapsed = local_assigns.fetch(:is_collapsed, false)
- mark_content = is_collapsed ? icon('check-square', class: 'todo-undone') : _('Mark done')
- todo_content = is_collapsed ? icon('plus-square') : _('Add todo')

%button.issuable-todo-btn.js-issuable-todo{ type: 'button',
  class: (is_collapsed ? 'btn-blank sidebar-collapsed-icon dont-change-state has-tooltip' : 'btn btn-default issuable-header-btn pull-right'),
  title: (todo.nil? ? _('Add todo') : _('Mark done')),
  'aria-label' => (todo.nil? ? _('Add todo') : _('Mark done')),
  data: issuable_todo_button_data(issuable, todo, is_collapsed) }
  %span.issuable-todo-inner.js-issuable-todo-inner<
    - if todo
      = mark_content
    - else
      = todo_content
  = icon('spin spinner', 'aria-hidden': 'true')