|
Member
(08-19-2012, 10:32 AM)
|
#551
Firefox users sort of have a work around, you can click and drag an image and it will remain expanded until you click again, and you can scroll using middle click without it resizing. Of course that doesn't help those of us who don't use Firefox. |
|
|
|
re-sign Martin Rucinsky
(08-19-2012, 10:54 AM)
|
#552
Honest to god that is the only issue that has annoyed me since switching to Chrome.
|
|
Member
(08-20-2012, 05:01 PM)
|
#554
So I'm having an issue where when I click replies on the forum page and then click a user it automatically triggers a 1 min search cool down and I have to backtrack and wait. Sometimes a database error page comes up. Rarely I can get through. I don't think clicking that link right there does it. I spent 10 minutes trying to test, but yeah.
|
|
A thousand roads lead me to 東京都
(08-26-2012, 06:53 AM)
|
#568
|
|
Member
(08-26-2012, 09:04 AM)
|
#571
|
|
A thousand roads lead me to 東京都
(08-26-2012, 10:43 PM)
|
#579
|
|
Junior Member
(08-27-2012, 02:43 AM)
|
#582
Quote:
Because the DTD is not at the top of the page, it's causing IE9 to use quirks mode - hope you like dealing with a 1999 browser if the script tags stay there.
Last edited by Cuteness Overload; 08-27-2012 at 02:55 AM.
|
|
A thousand roads lead me to 東京都
(08-27-2012, 07:39 AM)
|
#583
|
|
Junior Member
(08-27-2012, 08:30 AM)
|
#584
Don't think so. Still problems. The code has not been removed in the pages, even after a cache-clearing refresh. (For anyone curious, I'm using desktop IE9 spoofing as mobile IE9 and my Lumia 900)
Speaking of problems with IE, someone needs to remove the HTTP header that is being sent that is like this: X-UA-Compatible: IE7 which is causing desktop IE browsing the desktop site to behave like IE7. Here's the first 25 lines of problematic code in the templates: remove the code in bold italics in all templates to solve it. You may need to do something more... Code:
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34361608-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script><!DOCTYPE html>
<html>
<head>
<title>NeoGAF</title>
<meta charset="ISO-8859-1" />
<meta name="format-detection" content="telephone=no">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="apple-touch-icon-precomposed" href="themes/Default/images/apple-touch-icon.png">
<link rel="apple-touch-icon" href="themes/Default/images/apple-touch-icon.png">
<style type="text/css">
@import "themes/Default/global.css?27";
body { font-size: 100%};
</style>
|
|
A thousand roads lead me to 東京都
(08-27-2012, 11:00 AM)
|
#585
No, is you cache. It's solved when i said it.
|
|
Junior Member
(08-27-2012, 11:11 AM)
|
#586
Believe it or not, I know that the browser's downloading fresh pages, since I've got the Network tab in the dev tools open, and during capture, HTTP 200s abound. (304s occur for cached content)
I've even checked with Google Chrome, a fresh copy, and guess what I got? ![]() I do not think that viewing the developer tool's DOM is the right way. Try right clicking on the page and viewing the source. Heck, I see the same DOM in the IE9's F12 and Chrome's dev tools. If the page has a DOCTYPE and is recognized, it'll show up as the very first item in the DOM in IE and Chrome's dev tools. A bit of an aside: I'd like to see MobileGAF be allowed to scale up to 2x by the user...
Last edited by Cuteness Overload; 08-27-2012 at 11:16 AM.
|
|
Junior Member
(08-27-2012, 12:18 PM)
|
#589
EDIT: Wow, unholy caching... You know I've bigger problems when the code somehow sticks around with different browsers and devices on the same connection. I think I'm going to wait a day or two and see if the problem persists. Since it no longer shows up on your side, cache-busting didn't help, and other people have it fixed, I think I'm blaming my ISP. EDIT 2: It's getting fixed! EDIT 3: ...on the default theme. What about the dark theme? Now I know why it's looking different to me... I use the dark theme!
Last edited by Cuteness Overload; 08-27-2012 at 01:19 PM.
|