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