aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-10-09 00:50:11 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-10-09 00:50:11 +0000
commit8ff92e243568a6ae72e88f48a7ae15dffaf81e57 (patch)
tree5c2a0faa2d36a819733b71ca3f0a8565ac12a90e /actionpack/CHANGELOG
parentca35e264a43790ec96306388cbe0a078a5c355eb (diff)
downloadrails-8ff92e243568a6ae72e88f48a7ae15dffaf81e57.tar.gz
rails-8ff92e243568a6ae72e88f48a7ae15dffaf81e57.tar.bz2
rails-8ff92e243568a6ae72e88f48a7ae15dffaf81e57.zip
Added an html_options hash parameter to javascript_tag() and update_page_tag() helpers #6311 [tzaharia]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5245 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG10
1 files changed, 10 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index a9bd209f15..41f71cc68c 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,15 @@
*SVN*
+* Added an html_options hash parameter to javascript_tag() and update_page_tag() helpers #6311 [tzaharia]. Example:
+
+ update_page_tag :defer => 'true' { |page| ... }
+
+ Gives:
+
+ <script defer="true" type="text/javascript">...</script>
+
+ Which is needed for dealing with the IE6 DOM when it's not yet fully loaded.
+
* Fixed that rescue template path shouldn't be hardcoded, then it's easier to hook in your own #6295 [mnaberez]
* Fixed escaping of backslashes in JavaScriptHelper#escape_javascript #6302 [sven@c3d2.de]