You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
md-dynamic-height should be a boolean as per the docs but it is just looking for the existence of the attribute and then setting the dynamic height to true.
if (!$scope.dynamicHeight) return $element.css('height', '');
should this not be
if (!$scope.dynamicHeight=="true") return $element.css('height', '');