PanelSrv fix, now panel rerenders after column span change

This commit is contained in:
Torkel Ödegaard 2015-02-08 09:02:03 +01:00
parent ab55412264
commit 20b64d9b7e

View File

@ -42,7 +42,7 @@ function (angular, _, config) {
$scope.panel.span = Math.min(Math.max($scope.panel.span + span, 1), 12); $scope.panel.span = Math.min(Math.max($scope.panel.span + span, 1), 12);
$timeout(function() { $timeout(function() {
$scope.$emit('render'); $scope.$broadcast('render');
}); });
}; };