BUGFIX: SelectionGroup.js typo, prevAl()l change to nextAll()

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@85039 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Normann Lou 2009-08-24 03:36:58 +00:00
parent d34963df8a
commit a75169a8ca

View File

@ -6,7 +6,7 @@ $(document).ready(function() {
var prev = li.prevAll('li.selected');
if(prev.length) prev.removeClass('selected');
var next = li.prevAll('li.selected');
var next = li.nextAll('li.selected');
if(next.length) next.removeClass('selected');
});
})