plone.app.discussion/plone/app/discussion/browser/javascripts/moderation.js

19 lines
557 B
JavaScript
Raw Normal View History

jq(document).ready(function() {
/*****************************************************************
* Check all checkboxes.
*****************************************************************/
jq("input[name='check_all']").click(function(){
if(jq(this).val()==0){
jq(this).parents("table")
.find("input:checkbox")
.attr("checked","checked")
}
else{
jq(this).parents("table")
.find("input:checkbox")
.attr("checked","")
}
});
});