Created
December 9, 2013 13:57
-
-
Save coolhome/7872597 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(function () { | |
| $('select[data-jms=true]').multiselect({ | |
| open: function(event, ui) { | |
| //This hack needs to be merged into the real multiselect js. | |
| $(this).parent().find('button.ui-multiselect').attr('tabindex', '-1'); | |
| }, | |
| close: function(event, ui) { | |
| $(this).parent().find('button.ui-multiselect').focus(); | |
| } | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment