silverstripe-framework/client/src/legacy/SelectionGroup.js
Damian Mooyman 6e74b57c36 BUG Fix issue with gulpfile.js not compiling client/src/legacy dir
BUG Make SelectionGroup.ss and SelectionGroup.js work together
BUG Fix for IE visual indentation of composite field
2016-07-28 16:32:40 +12:00

23 lines
549 B
JavaScript

import $ from '../jQuery';
$(document).ready(function() {
// Support both bootstrap / legacy selectors
$('ul.SelectionGroup input.selector, ul.selection-group input.selector')
.live('click', function() {
var li = $(this).closest('li');
li.addClass('selected');
var prev = li.prevAll('li.selected');
if(prev.length) {
prev.removeClass('selected');
}
var next = li.nextAll('li.selected');
if(next.length) {
next.removeClass('selected');
}
$(this).focus();
}
);
});