Istvan Pusztai

Results 3 comments of Istvan Pusztai
trafficstars

Here's my drop-in monkey patch to support this on v5 (it's surprisingly straightforward): https://gist.github.com/istvanp/9d7dedff7c56f69d5524c054565ae42a I have not tested it in all situations so I'm going to wait before doing a...

Would like to see this merged as well 👍 My use case is that I need to do a little more than assigning a UIImage to the itemView. Specifically, I'm...

I monkey patched it as such: ```ruby module Rack class Cors class Resource def to_preflight_headers(env) h = to_headers(env) h.merge!('Vary' => vary_headers.join) # env[HTTP_ACCESS_CONTROL_REQUEST_HEADERS]) end h end end end end ```