Strip @hubzilla.server part from guid for autoscrolling purpuses

This commit is contained in:
Hypolite Petovan 2017-03-03 21:45:36 -05:00
parent 4d591c4a07
commit 3ea830e221
2 changed files with 4 additions and 3 deletions

View file

@ -4,8 +4,9 @@
// Catch the GUID from the URL
var itemGuid = window.location.pathname.split("/").pop();
var itemGuidSafe = itemGuid.replace(/%.*/, '');
$(window).load(function(){
// Scroll to the Item by its GUID
scrollToItem('item-'+itemGuid);
scrollToItem('item-' + itemGuidSafe);
});