In IE, the members table in Kitchensink AngularJS is not updated when a new member is created or the table is refreshed.
IE is caching rest/members and does not contact the server for a new version. Caching can be prevented by changing the refresh function in Members controller like this:
$scope.refresh = function() {
$scope.members = Members.query({time: new Date().getTime()});
};
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira