Skip to content

Commit

Permalink
Fix whitespacing in multiselect js
Browse files Browse the repository at this point in the history
  • Loading branch information
jom committed Jan 17, 2019
1 parent 8afd4f5 commit 0dc8fa4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions assets/js/multiselect.js
@@ -1,6 +1,6 @@
/* global job_manager_select2_args */
jQuery(function($){
jQuery( function( $ ) {
if ( $.isFunction( $.fn.select2 ) && typeof job_manager_select2_args !== 'undefined' ) {
$('.job-manager-multiselect:visible').select2(job_manager_select2_args);
$( '.job-manager-multiselect:visible' ).select2( job_manager_select2_args );
}
});
} );
6 changes: 3 additions & 3 deletions assets/js/term-multiselect.js
@@ -1,6 +1,6 @@
/* global job_manager_select2_args */
jQuery(function($){
jQuery( function( $ ) {
if ( $.isFunction( $.fn.select2 ) && typeof job_manager_select2_args !== 'undefined' ) {
$('.job-manager-category-dropdown:visible').select2(job_manager_select2_args);
$( '.job-manager-category-dropdown:visible' ).select2( job_manager_select2_args );
}
});
} );

0 comments on commit 0dc8fa4

Please sign in to comment.