mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
11 lines
277 B
JavaScript
11 lines
277 B
JavaScript
(function ($) {
|
|
// VERTICALLY ALIGN FUNCTION
|
|
$.fn.vAlign = function() {
|
|
return this.each(function(i){
|
|
var ah = $(this).height();
|
|
var ph = $(this).parent().height();
|
|
var mh = Math.ceil((ph-ah) / 2);
|
|
$(this).css('margin-top', mh);
|
|
});
|
|
};
|
|
})(jQuery); |