Sha256: cd700ce41d7b44ecfd394a622308cee0be4a10a8834b0d599859fe1467adfe9f
Contents?: true
Size: 277 Bytes
Versions: 101
Compression:
Stored size: 277 Bytes
Contents
(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);
Version data entries
101 entries across 101 versions & 4 rubygems