blob: b8b3520006d9aa223f5ba09a838485ebc680406f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// $Id$
if (Drupal.jsEnabled) {
$(function() {
// Automatically selects the right radio button in the filter section of
// the admin content list.
$('#node-admin-filter select').change(function() {
$('#node-admin-filter input:radio[@value="'+ this.id.substr(5) +'"]')
.attr('checked', true);
});
});
}
|