Skip to content

Commit

Permalink
Merge pull request #96 from pentium10/master
Browse files Browse the repository at this point in the history
on dblclick toggle ellipsize
  • Loading branch information
pentium10 committed May 18, 2015
2 parents 63ff627 + 01f999e commit 073cbf4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/tpl/currentTubeSearchResults.php
Expand Up @@ -27,7 +27,7 @@
<tr>
<td><?php echo $job->getId(); ?></td>
<td><?php echo $state; ?></td>
<td class="ellipsize"><?php echo $job->getData(); ?></td>
<td class="ellipsize"><?php echo htmlspecialchars($job->getData()); ?></td>
<td>
<div class="dropdown btn-group-xs">
<button class="btn btn-default dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-expanded="true">
Expand Down
2 changes: 1 addition & 1 deletion public/js/customer.js
Expand Up @@ -178,7 +178,7 @@ $(document).ready(
$('#servers-add').modal('toggle');
return false;
});
$('.ellipsize').on('click', function () {
$('.ellipsize').on('dblclick', function () {
$(this).toggleClass('ellipsize');
});
}
Expand Down

0 comments on commit 073cbf4

Please sign in to comment.