mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
Forgot to check in this new file
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
module ActionDispatch
|
||||
class BestStandardsSupport
|
||||
def initialize(app)
|
||||
@app = app
|
||||
end
|
||||
|
||||
def call(env)
|
||||
status, headers, body = @app.call(env)
|
||||
headers["X-UA-Compatible"] = "IE=Edge,chrome=1"
|
||||
[status, headers, body]
|
||||
end
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user