Text to go in the release notes:
|
This development changes how the _Show analytics_ link is displayed in both OPAC and staff interface.
The main changes are:
* It is only displayed if it would actually have results (right now it always shows, and the link can point to empty results)
* It is no longer constrained to serials: _collections_, _subunits_, _integrating resources_, _monographs_ and _serials_, all will display the link.
New CSS classes are added for each material type:
* _analytic_collection_
* _analytic_subunit_
* _analytic_ires_
* _analytic_monograph_
* _analytic_serial_
This way, libraries that wish to only display those links for serials (for example), can hide them for other resources:
```
.analytic_collection .analytic_subunit .analytic_ires .analytic_monograph { display: none };
```
This CSS classes can be used in both OPAC and admin interface.
|