Commit 9a1a4930 authored by Ad Schellevis's avatar Ad Schellevis

missing ;

parent 1c6096c1
...@@ -195,12 +195,12 @@ $( document ).ready(function() { ...@@ -195,12 +195,12 @@ $( document ).ready(function() {
$("#members").append($("#notmembers option:selected")); $("#members").append($("#notmembers option:selected"));
$("#notmembers option:selected").remove(); $("#notmembers option:selected").remove();
$("#members option:selected").prop('selected', false); $("#members option:selected").prop('selected', false);
}) });
$("#remove_groups").click(function(){ $("#remove_groups").click(function(){
$("#notmembers").append($("#members option:selected")); $("#notmembers").append($("#members option:selected"));
$("#members option:selected").remove(); $("#members option:selected").remove();
$("#notmembers option:selected").prop('selected', false); $("#notmembers option:selected").prop('selected', false);
}) });
$("#save").click(function(){ $("#save").click(function(){
$("#members > option").prop('selected', true); $("#members > option").prop('selected', true);
$("#notmembers > option").prop('selected', false); $("#notmembers > option").prop('selected', false);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment