Settings and activity
153 results found
-
4 votes
An error occurred while saving the comment Derek Brown shared this idea · -
12 votesDerek Brown supported this idea ·
-
17 votesDerek Brown supported this idea ·
-
4 votes
An error occurred while saving the comment Derek Brown commentedThis would make our lives a lot easier for scheduling.
Derek Brown supported this idea · -
3 votesDerek Brown shared this idea ·
-
8 votesDerek Brown shared this idea ·
-
20 votesDerek Brown supported this idea ·
-
18 votesDerek Brown supported this idea ·
-
41 votesDerek Brown supported this idea ·
-
20 votesDerek Brown supported this idea ·
-
7 votesDerek Brown supported this idea ·
-
7 votesDerek Brown supported this idea ·
-
36 votes
An error occurred while saving the comment Derek Brown commentedThis is a huge request from our patrons since we went live with Vega Discover Premium.
Derek Brown supported this idea · -
45 votesDerek Brown supported this idea ·
-
50 votesDerek Brown supported this idea ·
-
3 votesDerek Brown shared this idea ·
-
2 votesDerek Brown supported this idea ·
-
7 votes
An error occurred while saving the comment Derek Brown commentedWe are running into this issue with Google Kiosk mode currently. We can't touch (click) on some of our homepage links because they are trying to open into a new window which is disabled by Google Kiosk. The pages we are linking to are catalog URLs and not showcases.
Derek Brown supported this idea · -
3 votes
An error occurred while saving the comment Derek Brown commentedWe are running into this issue with Google Kiosk mode currently. We can't touch (click) on some of our homepage links because they are trying to open into a new window which is disabled by Google Kiosk. The pages we are linking to are catalog URLs and not showcases.
Derek Brown supported this idea · -
3 votesDerek Brown shared this idea ·
We've made changes to our Vega Discover Premium Footer to force changes to the way Discover reflects to our patrons. Here is a snip of our footer that redirects the "I forgot my password" link from the clarivate email statement to our classic PAC that has the correct verbiage.
<script>
function addClickListenerToImage2() {
document.querySelectorAll('a[target*="blank"]').forEach(function(link) {
link.removeAttribute('target');
link.removeAttribute('href');
});
}
function addClickListenerToImage() {
const passcodeReplace = document.querySelector('a[class*="forgot-passcode-link"]');
if (passcodeReplace) {
passcodeReplace.addEventListener('click', function() {
// Change the window location to the new URL
window.location.href = 'https://catalog.rhpl.org/polaris/logon.aspx?forgotPassword=1&ctx=1.1033.0.0.8';
});
}
}
const observer = new MutationObserver(function(mutationsList) {
// Check for added nodes
for (const mutation of mutationsList) {
if (mutation.type === 'childList') {
addClickListenerToImage2();
addClickListenerToImage();
}
}
});