1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Added :handle as an option to sortable_element to restrict the drag handle to a given class #1642 [thejohnny]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1760 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
David Heinemeier Hansson 2005-07-07 14:34:26 +00:00
parent 94209e2fb7
commit b640a64760
2 changed files with 3 additions and 1 deletions

View file

@ -1,5 +1,7 @@
*SVN* *SVN*
* Added :handle as an option to sortable_element to restrict the drag handle to a given class #1642 [thejohnny]
* Added a bunch of script.aculo.us features: Effect.ScrollTo, to smoothly scroll the page to an element, better Firefox flickering handling on SlideUp/SlideDown, Removed a possible memory leak in IE with draggables, Added support for cancelling dragging my hitting ESC #1644 [Thomas Fuchs] * Added a bunch of script.aculo.us features: Effect.ScrollTo, to smoothly scroll the page to an element, better Firefox flickering handling on SlideUp/SlideDown, Removed a possible memory leak in IE with draggables, Added support for cancelling dragging my hitting ESC #1644 [Thomas Fuchs]
* Fixed that named routes didn't use the default values for action and possible other parameters #1534 [Nicholas Seckar] * Fixed that named routes didn't use the default values for action and possible other parameters #1534 [Nicholas Seckar]

View file

@ -441,7 +441,7 @@ module ActionView
options[:onUpdate] ||= "function(){" + remote_function(options) + "}" options[:onUpdate] ||= "function(){" + remote_function(options) + "}"
options.delete_if { |key, value| AJAX_OPTIONS.include?(key) } options.delete_if { |key, value| AJAX_OPTIONS.include?(key) }
[:tag, :overlap, :constraint].each do |option| [:tag, :overlap, :constraint, :handle].each do |option|
options[option] = "'#{options[option]}'" if options[option] options[option] = "'#{options[option]}'" if options[option]
end end