Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion grids.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
/**
* Ensure equal heights now, on ready, load and resize.
*/
$.fn.responsiveEqualHeightGrid = function() {
$.fn.responsiveEqualHeightGrid = function(callback) {
var _this = this;

function syncHeights() {
Expand All @@ -70,6 +70,7 @@
}
$(window).bind('resize load', syncHeights);
syncHeights();
if(typeof callback!="undefined") callback();
return this;
};

Expand Down