resthub / resthub-backbone-stack

RESThub Backbone.js stack
http://resthub.org/docs/backbone/
Other
56 stars 26 forks source link

Handle IE cache management #88

Closed sdeleuze closed 11 years ago

sdeleuze commented 11 years ago

By default, unlike other browsers IE cache all GET requests. This generate some bugs (GET after PUT return the old version of the data)

We should implement the same workaround than i RESThub JS 1.x https://github.com/resthub/resthub-js/blob/master/src/lib/repository.js

Especially following lines :

$.ajaxSetup({ cache: false });