Add WebCms
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
(function($) {
|
||||
$.fn.VerticalAlign = function(opts) {
|
||||
return this.each(function() {
|
||||
var top = (($(this).parent().height() - $(this).height()) / 2);
|
||||
$(this).css('margin-top', top);
|
||||
});
|
||||
};
|
||||
})(jQuery);
|
||||
Reference in New Issue
Block a user