scrollbar: fix 'legendScrollbar.destroy is not a function' error

This commit is contained in:
Alexander Zobnin 2018-04-04 19:00:28 +03:00
parent a265c77cf9
commit 6b598f34cd

View File

@ -19,7 +19,7 @@ module.directive('graphLegend', function(popoverSrv, $timeout) {
scope.$on('$destroy', function() {
if (legendScrollbar) {
legendScrollbar.destroy();
legendScrollbar.dispose();
}
});