1
0
mirror of https://github.com/moparisthebest/mail synced 2024-08-13 16:43:47 -04:00

fix scope apply on send

This commit is contained in:
Tankred Hase 2013-10-22 16:52:48 +02:00
parent ed3f4318b4
commit caa1be2e69

View File

@ -112,7 +112,9 @@ define(function(require) {
return;
}
$scope.$parent.$parent.closeWriter();
var ps = $scope.$parent.$parent;
ps.closeWriter();
ps.$apply();
});
};
};