Skip to content
Snippets Groups Projects
Commit a5335c66 authored by Earl Miles's avatar Earl Miles
Browse files

#452700 by akahn: Remove @ in selectors for jQuery 1.3 compatibility.

parent c08fc94d
No related branches found
No related tags found
No related merge requests found
......@@ -76,7 +76,7 @@ Drupal.CTools.dependent.autoAttach = function() {
// Drupal.settings.CTools.dependent[id].values[bind_id] holds the possible values
if (bind_id.substring(0, 6) == 'radio:') {
var trigger_id = "input[@name='" + bind_id.substring(6) + "']";
var trigger_id = "input[name='" + bind_id.substring(6) + "']";
}
else {
var trigger_id = '#' + bind_id;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment