Conflicts when not using json dataType
maximebedard opened this issue · 3 comments
maximebedard commented
When using Backbone.sync
with dataType: 'jsonp'
, the library changes the dataType to json an tries to make a CORS call and get the following error on IE9.
Would it be usefull to early return when such a happen?
if (options.dataType === 'jsonp') {
return Backbone.vanillaSync.apply(this, arguments);
}
mcallew commented
+1
I got same issue
victorquinn commented