mirror of
https://github.com/friendica/friendica
synced 2025-04-24 23:50:20 +00:00
Improved comment hiding interaction
- Remove global window.showMore and window.showFewer - Improve global showHideComments function - Remove frio-specific showHideComments function
This commit is contained in:
parent
642f9409a7
commit
d7dbc632f8
11 changed files with 47 additions and 60 deletions
|
@ -388,19 +388,6 @@ function showHide(theID) {
|
|||
}
|
||||
}
|
||||
|
||||
function showHideComments(id) {
|
||||
if( $('#collapsed-comments-' + id).is(':visible')) {
|
||||
$('#collapsed-comments-' + id).slideUp();
|
||||
$('#hide-comments-' + id).html(window.showMore);
|
||||
$('#hide-comments-total-' + id).show();
|
||||
}
|
||||
else {
|
||||
$('#collapsed-comments-' + id).slideDown();
|
||||
$('#hide-comments-' + id).html(window.showFewer);
|
||||
$('#hide-comments-total-' + id).hide();
|
||||
}
|
||||
}
|
||||
|
||||
// Show & hide event map in the network stream by button click.
|
||||
function showHideEventMap(elm) {
|
||||
// Get the id of the map element - it should be provided through
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue