aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/lib/action_view/helpers/javascript_helper.rb
Commit message (Collapse)AuthorAgeFilesLines
* Cut string allocations in content_tag_stringschneems2015-07-291-3/+3
| | | | | | content_tag's first argument is will generate a string with an html tag so `:a` will generate: `<a></a>`. When this happens, the symbol is implicitly `to_s`-d so a new string is allocated. We can get around that by using a frozen string instead which This change buys us 74,236 bytes of memory and 1,855 fewer objects per request.
* [ci skip] Add space after erb block.yui-knk2015-03-121-1/+1
|
* [ci skip] Fix doc for javascript_helperAditya Kapoor2014-06-111-1/+7
|
* Move actionpack/lib/action_view* into actionview/libPiotr Sarnacki2013-06-201-0/+75