Skip to content

Commit 6e8c332

Browse files
committed
fix conflict with crouton
1 parent f37eba1 commit 6e8c332

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

admin/js/bmlt_meeting_list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ jQuery(document).ready(
239239
placeholder: "Select authors",
240240
}
241241
);
242-
$ml('.chosen-select').on("change", function (e) {
242+
$ml('.bread-select').on("change", function (e) {
243243
const self = $ml(this);
244244
const field = self.parent().find('.select2-search--inline');
245245
field.css('display', (self.val().length == 0 ? 'contents' : 'block'));

admin/partials/_bmlt_server_setup.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@
9494
<h3 class="hndle"><?php esc_html_e('Include Extra Meetings', 'bread') ?><span class="my-tooltip" data-tooltip-content="#extrameetings-tooltip-content"><span class="tooltipster-icon">(?)</span></span></h3>
9595
<div class="inside">
9696
<?php if ($this->connected && $this->bread->getOption('extra_meetings_enabled') == 1) {?>
97-
<select id="extra_meetings" class="chosen-select" id="extra_meetings" name="extra_meetings[]" multiple="multiple">
97+
<select id="extra_meetings" class="bread-select" id="extra_meetings" name="extra_meetings[]" multiple="multiple">
9898
<?php
9999
$extra_meetings_array = $this->bread->bmlt()->get_all_meetings();
100100
echo "<option value=''>Select Extra Meetings</option>";
@@ -122,7 +122,7 @@
122122
<div id="currentmeetinglistauthordiv" class="postbox">
123123
<h3 class="hndle"><?php esc_html_e('Meeting List Author(s)', 'bread') ?></h3>
124124
<div class="inside">
125-
<select id="author_chosen" name="authors_select[]" class="chosen-select" multiple>
125+
<select id="author_chosen" name="authors_select[]" class="bread-select" multiple>
126126
<?php foreach ($specific_users as $user) { ?>
127127
<option value="<?php echo esc_attr($user->ID); ?>" <?php echo in_array($user->ID, $this->bread->getOption('authors')) ? 'selected' : '' ?>><?php echo esc_html($user->user_firstname . ' ' . $user->user_lastname . ' (' . $user->user_login . ')'); ?> </option>
128128
<?php } ?>

admin/partials/_bread_wizard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
<p><?php esc_html_e('Next, we need to know which meetings are going to be on the meeting list. This will help the wizard when it
7373
tries to choose an a appropriate layout for you.', 'bread') ?></p>
7474
</div>
75-
<select class="chosen-select" style="width: 400px;" data-placeholder="<?php esc_html_e('Choose up to 5 service bodies', 'bread') ?>" id="wizard_service_bodies" name="wizard_service_bodies[]" multiple="multiple">
75+
<select class="bread-select" style="width: 400px;" data-placeholder="<?php esc_html_e('Choose up to 5 service bodies', 'bread') ?>" id="wizard_service_bodies" name="wizard_service_bodies[]" multiple="multiple">
7676
<option value=1>The is placeholder 1 Hello</option>
7777
<option value=2>The is placeholder 1 Hello</option>
7878
<option value=3>The is placeholder 1 Hello</option>

0 commit comments

Comments
 (0)