the check boxes for "Affect teaser/body/rss output" fail to work when running jquery_update.module 6.x-2.x-dev. the bug is on line 34 with the selector of id*=enable.
if (Drupal.jsEnabled) {
$(document).ready(function(){
$("input[@id*=enable]")
.click(Drupal.contemplate.toggle)
});
}
should be
if (Drupal.jsEnabled) {
$(document).ready(function(){
$("input[id*=enable]")
.click(Drupal.contemplate.toggle)
});
}
Comments
Comment #1
shane birley commentedissue in contemplate.js
Comment #2
nigelcunningham commentedThe suggested fix works for me (Content templates 6.x-1.1, Jquery 1.3.2).
Comment #3
Mike_Waters commentedAcc to jquery,
"The '@' in [@attr] has been removed. Deprecated since 1.2 this old syntax
no longer works"
Just an FYI
Comment #4
PixelClever commentedShould the version on this be listed as 6.1.1 instead of HEAD?
Comment #5
jrglasgow commentedthis fix has been committed