mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
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:
parent
d34963df8a
commit
a75169a8ca
@ -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');
|
||||
});
|
||||
})
|
||||
|
Loading…
x
Reference in New Issue
Block a user