BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
a3d55db9
Commit
a3d55db9
authored
Apr 29, 2015
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update task list behavior for Issues
parent
18baf550
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
6 deletions
+27
-6
issue.js.coffee
app/assets/javascripts/issue.js.coffee
+23
-4
_issue_context.html.haml
app/views/projects/issues/_issue_context.html.haml
+1
-1
show.html.haml
app/views/projects/issues/show.html.haml
+3
-1
No files found.
app/assets/javascripts/issue.js.coffee
View file @
a3d55db9
...
...
@@ -6,11 +6,11 @@ class @Issue
$
(
".context .inline-update"
).
on
"change"
,
"#issue_assignee_id"
,
->
$
(
this
).
submit
()
if
$
(
"a.btn-close"
).
length
$
(
"li.task-list-item input:checkbox"
).
prop
(
"disabled"
,
false
)
# Prevent duplicate event bindings
@
disableTaskList
(
)
$
(
'.task-list-item input:checkbox'
).
off
(
'change'
)
$
(
'.task-list-item input:checkbox'
).
change
(
'issue'
,
updateTaskState
)
if
$
(
"a.btn-close"
).
length
@
initTaskList
(
)
$
(
'.issue-details'
).
waitForImages
->
$
(
'.issuable-affix'
).
affix
offset
:
...
...
@@ -22,3 +22,22 @@ class @Issue
$
(
@
).
width
(
$
(
@
).
outerWidth
())
.
on
'affixed-top.bs.affix affixed-bottom.bs.affix'
,
->
$
(
@
).
width
(
''
)
initTaskList
:
->
$
(
'.issue-details .js-task-list-container'
).
taskList
(
'enable'
)
$
(
document
).
on
'tasklist:changed'
,
'.issue-details .js-task-list-container'
,
@
updateTaskList
disableTaskList
:
->
$
(
'.issue-details .js-task-list-container'
).
taskList
(
'disable'
)
$
(
document
).
off
'tasklist:changed'
,
'.issue-details .js-task-list-container'
# TODO (rspeicher): Make the issue description inline-editable like a note so
# that we can re-use its form here
updateTaskList
:
->
patchData
=
{}
patchData
[
'issue'
]
=
{
'description'
:
$
(
'.js-task-list-field'
,
this
).
val
()}
$
.
ajax
type
:
'PATCH'
url
:
$
(
'form.js-issue-update'
).
attr
(
'action'
)
data
:
patchData
app/views/projects/issues/_issue_context.html.haml
View file @
a3d55db9
=
form_for
[
@project
.
namespace
.
becomes
(
Namespace
),
@project
,
@issue
],
remote:
true
,
html:
{
class:
'edit-issue inline-update'
}
do
|
f
|
=
form_for
[
@project
.
namespace
.
becomes
(
Namespace
),
@project
,
@issue
],
remote:
true
,
html:
{
class:
'edit-issue inline-update
js-issue-update
'
}
do
|
f
|
%div
.prepend-top-20
.issuable-context-title
%label
...
...
app/views/projects/issues/show.html.haml
View file @
a3d55db9
...
...
@@ -31,10 +31,12 @@
=
gfm
escape_once
(
@issue
.
title
)
%div
-
if
@issue
.
description
.
present?
.description
.description
.js-task-list-container
.wiki
=
preserve
do
=
markdown
(
@issue
.
description
,
parse_tasks:
true
)
%textarea
.hidden.js-task-list-field
=
@issue
.
description
%hr
.issue-discussion
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment