Skip to content

Commit d662285

Browse files
committed
fix(list): offsetHeight does not calculate margins #2373
1 parent 3035baa commit d662285

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/kendo.list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ var __meta__ = { // jshint ignore:line
663663
siblings.each(function() {
664664
var element = $(this);
665665

666-
offsetHeight += outerHeight(element);
666+
offsetHeight += outerHeight(element, true);
667667
});
668668

669669
return offsetHeight;

0 commit comments

Comments
 (0)