Commit 20b64d9b by Torkel Ödegaard

PanelSrv fix, now panel rerenders after column span change

parent ab554122
...@@ -42,7 +42,7 @@ function (angular, _, config) { ...@@ -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');
}); });
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment