|
@@ -684,7 +684,8 @@
|
|
|
$('<div>')
|
|
|
.addClass('block random-player')
|
|
|
.append(this.$btn)
|
|
|
- .insertAfter('#block-userlogin, #block-studiolinkblock');
|
|
|
+
|
|
|
+ .prependTo('.region-footer-right');
|
|
|
|
|
|
|
|
|
this.$btn.on('click', this.toggleActive.bind(this));
|
|
@@ -1016,14 +1017,20 @@
|
|
|
horizontalOrder: true,
|
|
|
containerStyle: null,
|
|
|
|
|
|
- initLayout: false,
|
|
|
+
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+ $grid.imagesLoaded().progress( function() {
|
|
|
+ $grid.masonry('layout');
|
|
|
+ });
|
|
|
+
|
|
|
$grid.imagesLoaded(function(){
|
|
|
- $grid.masonry();
|
|
|
+ $grid.masonry('layout');
|
|
|
});
|
|
|
};
|
|
|
|