Remove AJAX comment deletion binding. This function relies on the nextUntil() selector introduced by jQuery 1.4 and therefore breaks in Plone 3 (that currently uses jQuery 1.3.2).

svn path=/plone.app.discussion/trunk/; revision=45188
This commit is contained in:
Timo Stollenwerk 2010-11-04 14:42:32 +00:00
parent b68da9925b
commit 823ada7491
2 changed files with 12 additions and 2 deletions

View File

@ -1,6 +1,15 @@
Changelog Changelog
========= =========
1.0b12 (2010-11-04)
-------------------
- Remove AJAX comment deletion binding. This function relies on the nextUntil()
selector introduced by jQuery 1.4 and therefore breaks in Plone 3
(that currently uses jQuery 1.3.2).
[timo]
1.0b11 (2010-11-03) 1.0b11 (2010-11-03)
------------------- -------------------

View File

@ -168,6 +168,7 @@
/********************************************************************** /**********************************************************************
* Delete a comment and its answers. * Delete a comment and its answers.
**********************************************************************/ **********************************************************************/
/*
$("input[name='form.button.DeleteComment']").live('click', function () { $("input[name='form.button.DeleteComment']").live('click', function () {
var trigger = this; var trigger = this;
var form = $(this).parents("form"); var form = $(this).parents("form");
@ -209,7 +210,7 @@
} }
}); });
return false; return false;
}); });*/
/********************************************************************** /**********************************************************************
* By default, hide the reply and the cancel button for the regular add * By default, hide the reply and the cancel button for the regular add