2020-09-27 16:36:33 +00:00
|
|
|
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPLv3-or-later
|
2016-08-10 11:07:13 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Javascript for the display module
|
2016-08-10 11:07:13 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
// Catch the GUID from the URL
|
2016-08-10 12:14:58 +00:00
|
|
|
var itemGuid = window.location.pathname.split("/").pop();
|
2016-08-10 11:07:13 +00:00
|
|
|
|
2021-01-22 13:38:44 +00:00
|
|
|
$(window).load(function () {
|
2016-08-10 11:07:13 +00:00
|
|
|
// Scroll to the Item by its GUID
|
2021-01-22 13:38:44 +00:00
|
|
|
scrollToItem("item-" + itemGuid);
|
2016-08-10 11:07:13 +00:00
|
|
|
});
|
2020-09-27 18:00:06 +00:00
|
|
|
// @license-end
|