12 lines
237 B
JavaScript
12 lines
237 B
JavaScript
/**
|
|
* Javascript for the display module
|
|
*/
|
|
|
|
// Catch the GUID from the URL
|
|
var itemGuid = window.location.pathname.split("/").pop();
|
|
|
|
$(window).load(function(){
|
|
// Scroll to the Item by its GUID
|
|
scrollToItem('item-' + itemGuid);
|
|
});
|