From a quick look at the for us available databases this was not actually used in the wild.
11 lines
301 B
Ruby
11 lines
301 B
Ruby
# From http://jfire.io/blog/2012/04/30/how-to-securely-bootstrap-json-in-a-rails-view/
|
|
# Review on Rails 4 update, might be built in by then!
|
|
|
|
class ActionView::Base
|
|
def json_escape(s)
|
|
result = s.to_s.gsub('/', '\/')
|
|
s.html_safe? ? result.html_safe : result
|
|
end
|
|
|
|
alias j json_escape
|
|
end
|