Index: multiselect.js =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/multiselect/multiselect.js,v retrieving revision 1.1 diff -u -r1.1 multiselect.js --- multiselect.js 6 Mar 2007 16:28:20 -0000 1.1 +++ multiselect.js 26 Sep 2007 03:45:42 -0000 @@ -55,7 +55,7 @@ option.selected = true; } }); -} +}; //moves the selection to the select box specified //usage $('nameofselectbox').moveSelectionTo(destination_selectbox) @@ -74,7 +74,7 @@ } } }); -} +}; //Adds an option to a select box //usage $('nameofselectbox').addOption(optiontoadd); @@ -86,4 +86,4 @@ { this.options[this.options.length] = option; }); -} +};