Added line that disables caching with a ajax client call that was causing errors to be thrown in IE10

This commit is contained in:
Reed Garmsen
2015-06-30 20:40:27 -07:00
parent 3a8059e477
commit 5a597c9606

View File

@@ -280,6 +280,7 @@ module.exports.getMeSynchronous = function(success, error) {
url: "/api/v1/users/me",
dataType: 'json',
contentType: 'application/json',
cache: false,
type: 'GET',
success: function(data, textStatus, xhr) {
current_user = data;