Related with this issue #358082: jQuery 1.3 in Drupal 6.x
To help ctools work with jQuery 1.3.2 in jQuery Update can we please remove the @ in the selectors. It was depreciated as of 1.2 and removed in 1.3. Change highlighted below.
jQuery 1.2.x:
$("a[@href*='admin/build/testing']").doSomething();
jQuery 1.2.6 and 1.3.x:
$("a[href*='admin/build/testing']").doSomething();
More detail at http://docs.jquery.com/Selectors/attributeHas#attribute
In the case of ctools is affecting in the panel creation when selecting menu types. This patch works fine with the standard jquery in 6.x.
| Comment | File | Size | Author |
|---|---|---|---|
| dependent_js.patch | 520 bytes | jcmarco |
Comments
Comment #1
merlinofchaos commentedCommitted. THanks!!