Posted May 13, 2025 11:15 AM
I invite you to join me for a PBA town hall to be held on Tuesday, May 27, from 11:00 AM-12:00 PM PDT/ 1:00 PM-2:00 PM CDT. To register for the session, please use this link: ala-events.zoom.us/meeting/register/...
In the past few months, a working group that included Executive Board member Karen Schneider, BARC chair Tamika Barnes, and BARC member Katy O'Neill and I have worked on potential models for PBA in the future. The culmination of that work has been the recommendation that PBA be dissolved and that its functions be accounted for otherwise within the association. However, before a formal recommendation be moved and voted on, we would like to gather feedback from PBA itself as well as from stakeholder units. The town hall on May 27 will be one such opportunity.
Attendees may pre-submit questions by end of day on Friday, May 23, at this link: forms.gle/9UM4yN3xLjYGF4cQA
------------------------------ Peter Hepburn Head Librarian, College of the Canyons ALA Treasurer, 2022-2025 He/Him/His ------------------------------ |
|
|
------------------------------
Nick Buron
Chief Librarian
Queens Public Library
He/Him/His
------------------------------
This thread already has a best answer. Would you like to mark this message as the new best answer?
';
if ($discussionImgModal.length == 0) {
$("form").append(modalHtml);
$discussionImgModal = $("#discussion-img-modal");
$discussionImgModal.find(".close").on('click', function () {
$discussionImgModal.modal("hide");
});
}
loadImage($discussionImgModal, source, title);
}
});
function loadImage($discussionImgModal, source, title) {
var discussionImg = $discussionImgModal.find("#modalImg")[0];
discussionImg.onload = function () {
$discussionImgModal.modal("show");
};
discussionImg.src = source;
$discussionImgModal.find("#caption").html(title);
}
var replyInlineParam = HigherLogic.Util.getParameterByName('ReplyInline');
if (!HigherLogic.Util.stringIsNullOrWhiteSpace(replyInlineParam)) {
var $replyInline = $('.reply-inline[data-message-key="' + replyInlineParam + '"]');
if ($replyInline.length > 0) {
openEditor($replyInline);
}
}
$('.reply-inline').on('click',
function () {
hl_common_ui_blockUI();
var $this = $(this);
if ($('.inline-reply-snippet').length > 0) {
hl_common_ui_unBlockUI();
$('.inline-reply-snippet').find('.modal.inline-confirm').modal('show');
$('.inline-reply-snippet').find('.modal.inline-confirm').data('reply-id', $this.prop('id'));
} else {
openEditor($this);
}
});
function openEditor($this) {
$('.inline-reply-snippet').remove();
var postData = { MessageKey: $this.data('message-key'), currentUrl: window.location.href };
HigherLogic.Util.post(
'/higherlogic/ui/mvc/eGroups/eGroups/GetReplyInline',
JSON.stringify(postData),
'html'
).done(function (data) {
var redirectUrl = $(data).data('redirect-url');
if (redirectUrl) {
// gives return location for unauthenticated user redirect to login
redirectUrl = hl_common_util_updateQueryStringParameter(redirectUrl,
'ReturnUrl',
encodeURIComponent(window.location.href));
// gives return location for unsubscribed user redirect to subscribe
window.location.href = hl_common_util_updateQueryStringParameter(redirectUrl,
'PostByLink',
encodeURIComponent(window.location.href));
return;
}
$this.closest('li').append(data);
var $div = $('#' + $(data).first('div').prop('id'));
var bottomOfDiv = $div.offset().top + 500;
$('html, body').animate({
scrollTop: bottomOfDiv - $(window).height()
},
1000);
hl_common_ui_unBlockUI();
});
}
});