Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
7c71e1d8
Commit
7c71e1d8
authored
Jul 18, 2018
by
Robert Lyon
Committed by
Gerrit Code Review
Jul 18, 2018
Browse files
Merge "Bug 1778905: Fix alignment of default and delete radio tick boxes"
parents
702e6a32
5635e31d
Changes
1
Hide whitespace changes
Inline
Side-by-side
htdocs/js/tablerenderer.js
View file @
7c71e1d8
...
...
@@ -94,7 +94,13 @@ return function (target, source, columns, options) {
tr
.
append
(
$
(
'
<td>
'
).
append
(
row
[
column
]));
}
else
if
(
typeof
(
column
)
==
'
function
'
)
{
tr
.
append
(
$
(
'
<td>
'
).
append
(
column
(
row
,
data
)));
var
columncontent
=
column
(
row
,
data
);
if
(
columncontent
.
nodeName
==
'
TD
'
)
{
tr
.
append
(
columncontent
);
}
else
{
tr
.
append
(
$
(
'
<td>
'
).
append
(
columncontent
));
}
}
else
if
(
typeof
(
column
)
==
'
undefined
'
)
{
return
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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