2016-08-10 13:07:13 +02:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Javascript for the display module
|
2016-08-10 13:07:13 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
// Catch the GUID from the URL
|
2016-08-10 14:14:58 +02:00
|
|
|
var itemGuid = window.location.pathname.split("/").pop();
|
2016-08-10 13:07:13 +02:00
|
|
|
|
2016-08-10 14:26:16 +02:00
|
|
|
$(window).load(function(){
|
2016-08-10 13:07:13 +02:00
|
|
|
// Scroll to the Item by its GUID
|
2017-05-20 19:18:20 +02:00
|
|
|
scrollToItem('item-' + itemGuid);
|
2016-08-10 13:07:13 +02:00
|
|
|
});
|