Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
This commit is contained in:
commit
373af6d4f4
2
boot.php
2
boot.php
@ -49,7 +49,7 @@ require_once('include/hubloc.php');
|
||||
require_once('include/attach.php');
|
||||
|
||||
define ( 'PLATFORM_NAME', 'hubzilla' );
|
||||
define ( 'STD_VERSION', '2.7.3' );
|
||||
define ( 'STD_VERSION', '2.7.4' );
|
||||
define ( 'ZOT_REVISION', '1.3' );
|
||||
|
||||
define ( 'DB_UPDATE_VERSION', 1196 );
|
||||
|
@ -77,7 +77,7 @@
|
||||
padding_top = parseInt(parent.css("padding-top"), 10);
|
||||
padding_bottom = parseInt(parent.css("padding-bottom"), 10);
|
||||
parent_top = parent.offset().top + border_top + padding_top;
|
||||
parent_height = parent.outerHeight(true);
|
||||
parent_height = parent.height();
|
||||
if (fixed) {
|
||||
fixed = false;
|
||||
bottomed = false;
|
||||
|
8
view/js/jquery.js
vendored
8
view/js/jquery.js
vendored
File diff suppressed because one or more lines are too long
@ -23,7 +23,7 @@ head_add_js('/library/jquery-textcomplete/jquery.textcomplete.js');
|
||||
|
||||
head_add_js('/library/jquery.timeago.js');
|
||||
head_add_js('/library/readmore.js/readmore.js');
|
||||
head_add_js('/library/sticky-kit/sticky-kit.js');
|
||||
head_add_js('/library/sticky-kit/sticky-kit.min.js');
|
||||
head_add_js('/library/jgrowl/jquery.jgrowl_minimized.js');
|
||||
head_add_js('/library/cryptojs/components/core-min.js');
|
||||
head_add_js('/library/cryptojs/rollups/aes.js');
|
||||
|
@ -16,12 +16,10 @@ $(document).ready(function() {
|
||||
}
|
||||
$('#css3-calc').remove(); // Remove the test element
|
||||
|
||||
|
||||
|
||||
if($(window).width() > 767) {
|
||||
$('#left_aside_wrapper').stick_in_parent({
|
||||
offset_top: $('nav').outerHeight(true) + 10,
|
||||
parent: '#region_1',
|
||||
offset_top: parseInt($('#region_1').css('padding-top')),
|
||||
parent: 'main',
|
||||
spacer: '#left_aside_spacer'
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user