mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/13713] Handle TODOs
PHPBB3-13713
This commit is contained in:
parent
f64dbf5303
commit
c2720792ac
5 changed files with 2 additions and 5 deletions
|
@ -1721,7 +1721,7 @@ fieldset.submit-buttons legend {
|
|||
height: 40px;
|
||||
}
|
||||
|
||||
svg.mention-media-avatar { /* TODO: remove it after general normalization */
|
||||
svg { /* TODO: remove it after general normalization */
|
||||
fill: currentColor;
|
||||
}
|
||||
|
||||
|
|
|
@ -480,7 +480,6 @@ function getCaretPosition(txtarea) {
|
|||
at: "@",
|
||||
acceptSpaceBar: true,
|
||||
displayTpl: function(data) {
|
||||
// TODO: handle image scaling
|
||||
let avatar = (data.avatar.img) ? "<span class='mention-media-avatar'>" + data.avatar.img + "</span>" : defaultAvatar(data.avatar.type),
|
||||
rank = (data.rank) ? "<span class='mention-rank'>" + data.rank + "</span>" : '';
|
||||
return "<li class='mention-item'><span class='mention-media'>" + avatar + "</span><span class='mention-name'>" + data.name + rank + "</span></li>";
|
||||
|
|
|
@ -91,7 +91,6 @@ class mention extends \phpbb\notification\type\post
|
|||
|
||||
/**
|
||||
* Update a notification
|
||||
* TODO: decide what to do with this stuff
|
||||
*
|
||||
* @param array $post Data specific for this type that will be updated
|
||||
* @return true
|
||||
|
|
|
@ -138,7 +138,6 @@ class data_access
|
|||
'email' => 10,
|
||||
'flash' => 11,
|
||||
'attachment' => 12,
|
||||
'mention' => 13, // TODO: change ID/remove?
|
||||
);
|
||||
|
||||
$styles = array();
|
||||
|
|
|
@ -43,7 +43,7 @@
|
|||
height: 40px;
|
||||
}
|
||||
|
||||
svg.mention-media-avatar { /* TODO: remove it after general normalization */
|
||||
svg { /* TODO: remove it after general normalization */
|
||||
fill: currentColor;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue