diff options
author | Andrey A.I. Sitnik <andrey@sitnik.ru> | 2012-04-05 15:32:37 +0400 |
---|---|---|
committer | Andrey A.I. Sitnik <andrey@sitnik.ru> | 2012-04-05 15:32:37 +0400 |
commit | f3fb416b89dab8d7b565b174bdc1116a519ab18d (patch) | |
tree | 9b5853dbb424e2b96ce41e870010cda73dd04058 /actionpack/lib/action_controller/metal | |
parent | a9398a7da4fa845a0182bd53273c607dae55b1ee (diff) | |
download | rails-f3fb416b89dab8d7b565b174bdc1116a519ab18d.tar.gz rails-f3fb416b89dab8d7b565b174bdc1116a519ab18d.tar.bz2 rails-f3fb416b89dab8d7b565b174bdc1116a519ab18d.zip |
Remove unnecessary in HTML 5 type attribute with default value
Diffstat (limited to 'actionpack/lib/action_controller/metal')
-rw-r--r-- | actionpack/lib/action_controller/metal/streaming.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/metal/streaming.rb b/actionpack/lib/action_controller/metal/streaming.rb index e9783e6919..52aaed0ed4 100644 --- a/actionpack/lib/action_controller/metal/streaming.rb +++ b/actionpack/lib/action_controller/metal/streaming.rb @@ -162,7 +162,7 @@ module ActionController #:nodoc: # Currently, when an exception happens in development or production, Rails # will automatically stream to the client: # - # "><script type="text/javascript">window.location = "/500.html"</script></html> + # "><script>window.location = "/500.html"</script></html> # # The first two characters (">) are required in case the exception happens # while rendering attributes for a given tag. You can check the real cause |