|
Author |
Message |
carvell |
This post is not being displayed .
|
 carvell Scuttler

Joined: 05 Sep 2003 Karma :  
|
|
Back to top |
|
You must be logged in to rate posts |
|
 |
owl |
This post is not being displayed .
|
 owl World Chat Champion
Joined: 21 Oct 2016 Karma :  
|
|
Back to top |
|
You must be logged in to rate posts |
|
 |
carvell |
This post is not being displayed .
|
 carvell Scuttler

Joined: 05 Sep 2003 Karma :  
|
|
Back to top |
|
You must be logged in to rate posts |
|
 |
Pjay |
This post is not being displayed .
|
 Pjay World Chat Champion

Joined: 18 Jan 2016 Karma :   
|
|
Back to top |
|
You must be logged in to rate posts |
|
 |
carvell |
This post is not being displayed .
|
 carvell Scuttler

Joined: 05 Sep 2003 Karma :  
|
|
Back to top |
|
You must be logged in to rate posts |
|
 |
carvell |
This post is not being displayed .
|
 carvell Scuttler

Joined: 05 Sep 2003 Karma :  
|
|
Back to top |
|
You must be logged in to rate posts |
|
 |
P. |
This post is not being displayed .
|
 P. Red Rocket
Joined: 14 Feb 2008 Karma :   
|
 Posted: 07:38 - 18 Jul 2017 Post subject: |
 |
|
Indeed, Safari is dropping the #number. My one is doing the same in both developer mode and 10.1 mode.
use Chrome  |
|
Back to top |
|
You must be logged in to rate posts |
|
 |
carvell |
This post is not being displayed .
|
 carvell Scuttler

Joined: 05 Sep 2003 Karma :  
|
 Posted: 07:54 - 20 Jul 2017 Post subject: |
 |
|
I've written a Tampermonkey script for Safari to fix it incase it's also bothering anyone else!
Code: | // ==UserScript==
// @name Bikechatforums 'view newest post' Safari fix
// @namespace http://www.burningimage.net/
// @version 0.1
// @author carvell
// @match www.bikechatforums.com/viewtopic.php?p=*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var loc = document.location.toString();
var postid = loc.split('=');
//If # already exists (i.e. bug is fixed)
if (postid[1].indexOf('#') > -1)
{
//Bug has probably been fixed
}
else
{
window.location.replace(loc + "#" + postid[1]);
}
})(); |
____________________ Yamaha TDM 850 |
|
Back to top |
|
You must be logged in to rate posts |
|
 |
Old Thread Alert!
The last post was made 8 years ago. Instead of replying here, would creating a new thread be more useful? |
 |
|
|