Skip to content

Commit

Permalink
Add title to button to set sequence reference
Browse files Browse the repository at this point in the history
refs #2693
  • Loading branch information
AngelFQC committed Jan 24, 2019
1 parent c8c8774 commit d5d77cc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion main/inc/ajax/sequence.ajax.php
Expand Up @@ -100,7 +100,15 @@
$link .= '<div class="big-icon">';
$link .= $image;
$link .= '<div class="sequence-course">'.$sessionInfo['name'].'</div>';
$link .= '<button type="button" class="sequence-id">'.$id.'</button>';
$link .= Display::tag(
'button',
$id,
[
'class' => 'sequence-id',
'title' => get_lang('UseAsReference'),
'type' => 'button',
]
);
$link .= $linkDelete;
$link .= $linkUndo;
$link .= '</div></div>';
Expand Down

0 comments on commit d5d77cc

Please sign in to comment.