2016-08-10 13:07:13 +02:00
|
|
|
/**
|
|
|
|
* @brief Javascript for the display module
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Catch the GUID from the URL
|
2016-08-10 14:14:58 +02:00
|
|
|
var itemGuid = window.location.pathname.split("/").pop();
|
2017-03-04 03:45:36 +01:00
|
|
|
var itemGuidSafe = itemGuid.replace(/%.*/, '');
|
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-03-04 03:45:36 +01:00
|
|
|
scrollToItem('item-' + itemGuidSafe);
|
2016-08-10 13:07:13 +02:00
|
|
|
});
|