mirror of
https://github.com/friendica/friendica
synced 2024-11-11 01:02:54 +00:00
12 lines
233 B
JavaScript
12 lines
233 B
JavaScript
|
/**
|
||
|
* @brief Javascript for the display module
|
||
|
*/
|
||
|
|
||
|
// Catch the GUID from the URL
|
||
|
var itemID = window.location.pathname.split("/").pop();
|
||
|
|
||
|
$(document).ready(function(){
|
||
|
// Scroll to the Item by its GUID
|
||
|
scrollToItem(itemID);
|
||
|
});
|