Scroll to top on error.

This commit is contained in:
Your Name 2014-06-01 01:52:14 +02:00
parent ecc3f75b7e
commit 75835ecf9e

View file

@ -2,7 +2,7 @@
angular.module('ffffng') angular.module('ffffng')
.directive('fNodeForm', function () { .directive('fNodeForm', function () {
var ctrl = function ($scope, $timeout, Constraints, Validator, _, config) { var ctrl = function ($scope, $timeout, Constraints, Validator, _, config, $window) {
$scope.config = config; $scope.config = config;
angular.extend($scope, { angular.extend($scope, {
center: { center: {
@ -107,6 +107,7 @@ angular.module('ffffng')
default: default:
$scope.error = 'Es ist ein Fehler aufgetreten. Versuche es später noch einmal.'; $scope.error = 'Es ist ein Fehler aufgetreten. Versuche es später noch einmal.';
} }
$window.scrollTo(0, 0);
}); });
}; };