Closed MargaretA-UO closed 2 years ago
Can you let me know how to see this on the current site so I know what's missing? I'm seeing this on VE, so I'm not sure what precisely needs to be there instead:
We would like the list of Summit Libraries to be collapsed by default. Here it is in Primo:
Fixed this - will deploy later for QA
Confirmed working.
Working in Primo, not in VE. See Alliance customization: https://www.orbiscascade.org/programs/systems/pcsg/primo-ve-toolkit/collapse-other-institutions/
Implementation In your custom.js, you should have the following line to define the app variable. There may be other modules listed in the brackets.
var app = angular.module('viewCustom', ['angularLoad']);
Paste in the following code:
app.component("prmAlmaOtherMembersAfter", { bindings: { parentCtrl: "<", }, controller: [ function () { var ctrl = this; ctrl.parentCtrl.isCollapsed = true; }, ], });