]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/js/mod_display.js
Merge branch 'master' into develop
[friendica.git] / view / theme / frio / js / mod_display.js
1 /**
2  * @brief Javascript for the display module
3  */
4
5 // Catch the GUID from the URL
6 var itemGuid = window.location.pathname.split("/").pop();
7
8 $(window).load(function(){
9         // Scroll to the Item by its GUID
10         scrollToItem('item-'+itemGuid);
11 });