Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
This commit is contained in:
commit
3bf0a27e45
14
CHANGELOG
14
CHANGELOG
@ -1,4 +1,9 @@
|
|||||||
Hubzilla 1.14 (not released)
|
Hubzilla 1.14 (not released)
|
||||||
|
- Allow a site to over-ride the help table-of-contents files
|
||||||
|
- Autoscroll to target post/comment when in single-thread mode
|
||||||
|
- Indicator for own response verb activity
|
||||||
|
- Add server role documentation
|
||||||
|
- Pro: remove 'Additional Features' link for techlevel 0
|
||||||
- Upgrade fullcalendar library to version 3
|
- Upgrade fullcalendar library to version 3
|
||||||
- Whitelist button tag in htmlpurifier
|
- Whitelist button tag in htmlpurifier
|
||||||
- Upgrade justifiedGallery library to version 3.6.3
|
- Upgrade justifiedGallery library to version 3.6.3
|
||||||
@ -27,8 +32,13 @@ Hubzilla 1.14 (not released)
|
|||||||
- Server roles (basic, standard and pro)
|
- Server roles (basic, standard and pro)
|
||||||
|
|
||||||
Bugfixes
|
Bugfixes
|
||||||
- do not show hidden channels in /randprof
|
- Missing categories in preview mode
|
||||||
- Various postgres fixes
|
- attach_store() sql issue
|
||||||
|
- Rename id share_container to distr_container - share_container seem to be blacklisted in various security browser plugins
|
||||||
|
- Add 'map' extension to files served natively by nginx without using the project controller
|
||||||
|
- Zot discovery wasn't returning in all cases (after discovering zot)
|
||||||
|
- Do not show hidden channels in /randprof
|
||||||
|
- Numerous postgres fixes
|
||||||
- Illegal offset errors in include/conversation:status_editor() when no permissions array is passed
|
- Illegal offset errors in include/conversation:status_editor() when no permissions array is passed
|
||||||
- Patch foundation-6.2.3 to work with jquery-3.1
|
- Patch foundation-6.2.3 to work with jquery-3.1
|
||||||
- Custom/expert permissions bug
|
- Custom/expert permissions bug
|
||||||
|
@ -652,8 +652,8 @@ function updateConvItems(mode,data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// auto-scroll to a particular comment in a thread (designated by mid) when in single-thread mode
|
// auto-scroll to a particular comment in a thread (designated by mid) when in single-thread mode
|
||||||
if(bParam_mid && mode == 'replace') {
|
if($('.item_' + bParam_mid.substring(0,32)).length && mode == 'replace') {
|
||||||
$('html, body').animate({ scrollTop: $('.item_' + bParam_mid.substring(0,32)).offset().top }, 'slow');
|
$('html, body').animate({ scrollTop: $('.item_' + bParam_mid.substring(0,32)).offset().top - $('nav').outerHeight(true) }, 'slow');
|
||||||
if($('.collapsed-comments').length) {
|
if($('.collapsed-comments').length) {
|
||||||
var scrolltoid = $('.collapsed-comments').attr('id').substring(19);
|
var scrolltoid = $('.collapsed-comments').attr('id').substring(19);
|
||||||
$('#collapsed-comments-' + scrolltoid).slideDown();
|
$('#collapsed-comments-' + scrolltoid).slideDown();
|
||||||
|
Reference in New Issue
Block a user