aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/asset_tag_helpers/javascript_tag_helpers.rb
Commit message (Collapse)AuthorAgeFilesLines
* Rearrange example output of javascript_include_tagPrem Sichanugrist2012-08-061-2/+2
|
* Do not include application.js if it doesn't existsPrem Sichanugrist2012-08-061-5/+6
| | | | | | Rails were including 'application.js' to the pack when using `javascript_include_tag :all` even there's no application.js in the public directory.
* Fix javascript_include_tag examples in documentationAlexey Vakhov2011-11-031-2/+2
|
* Allow asset tag helper methods to accept :digest => false option in order to ↵Santiago Pastorino2011-09-141-1/+1
| | | | completely avoid the digest generation.
* use_sprockets is not used anymoreSantiago Pastorino2011-07-261-5/+1
|
* Remaining cleanup from changes to AssetTagHelpertomhuda2011-05-241-6/+2
|
* Prototype and Scriptaculous are no longer vendored, but provided by ↵Xavier Noria2011-04-301-4/+3
| | | | prototype-rails from now on, also the -j option of the application generator is removed
* Replace example hostname with "example.com".Joost Baaij2011-04-211-9/+9
| | | | | The hostname used in these comments actually exists, which is undesirable. See also RFC 2606.
* Let's use inheritance here, shall we?José Valim2011-04-191-3/+0
|
* Switch to asset_path and make it available in the Sprockets::Context (now ↵David Heinemeier Hansson2011-04-191-1/+1
| | | | you can do asset_path("logo.png") in a stylesheet.css.erb file and get fingerprinting)
* jQuery is the new defaultXavier Noria2011-04-131-58/+70
|
* Use sprockets helpers if config.use_sprockets is setJoshua Peek2011-03-291-3/+11
|
* Remove sprockets exception from main asset helpersJoshua Peek2011-03-281-10/+0
|
* Add sprockets md5s to asset tagsJoshua Peek2011-03-221-0/+10
|
* javascript_include_tag shouldn't raise if you register an expansion key with ↵Santiago Pastorino2011-02-281-1/+1
| | | | nil value
* Applied changes to stylesheet_link_tag from javascript_include_tag which ↵Josh Kalderimis2011-02-131-11/+0
| | | | corrects issues with ordering and duplicates.
* This corrects two issues with javascript_include_tag, the order at which ↵Josh Kalderimis2011-02-131-4/+23
| | | | | | | | they are expanded, and removing duplicates. When individual js assets are specified, they will override the order of the same asset specified in an expansion. [#5938 state:resolved]
* Allow registering javascript/stylesheet_expansions to existing symbolsSantiago Pastorino2010-12-221-2/+5
|
* reorganised the the common asset helpers module into a class and have it ↵Josh Kalderimis2010-11-161-4/+3
| | | | include the id caching module, this class is now shared from the view instance to the asset include tag helpers (js and css)
* incorporated most of the feedback from JoséJosh Kalderimis2010-11-161-11/+13
|
* reduced duplication between the javascript and stylesheet asset tag methods, ↵Josh Kalderimis2010-11-161-51/+38
| | | | also split the asset id caching methods into a separate module for easy inclusion and use by the asset include tag class and base asset tag helpers
* separated the asset id methods to a separate module, removed some dupliation ↵Josh Kalderimis2010-11-161-4/+9
| | | | with the various path methods, and moved the base asset tag methods to a base module so the asset id module can play nice with the path generation
* split the javascript and stylesheet tag helpers into separate files as a ↵Josh Kalderimis2010-11-161-0/+180
precusor before removing the duplication between the two