2016-08-10 11:07:13 +00:00
|
|
|
/**
|
|
|
|
* @brief Javascript for the display module
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Catch the GUID from the URL
|
2016-08-10 12:14:58 +00:00
|
|
|
var itemGuid = window.location.pathname.split("/").pop();
|
2017-03-04 02:45:36 +00:00
|
|
|
var itemGuidSafe = itemGuid.replace(/%.*/, '');
|
2016-08-10 11:07:13 +00:00
|
|
|
|
2016-08-10 12:26:16 +00:00
|
|
|
$(window).load(function(){
|
2016-08-10 11:07:13 +00:00
|
|
|
// Scroll to the Item by its GUID
|
2017-03-04 02:45:36 +00:00
|
|
|
scrollToItem('item-' + itemGuidSafe);
|
2016-08-10 11:07:13 +00:00
|
|
|
});
|