Sublime Forum

Forum is broken

#1

It would be nice if the forum would be fixed sometime soon, I know your busy doing important development but this really makes for a difficult time in the forums. You obviously made some change somewhere but never tested it!

Learn to program Forth, it teaches you to test every single edit no matter how minor a change immediately after having made it :smile:

0 Likes

#2

I threw together a quick userscript that kinda fixes it.

Link: http://userscripts.org/scripts/review/478137

[code]

// ==UserScript==
// @name Sublime-Text Forums Fixer
// @namespace https://nanderson.me
// @version 0.5
// @match http://www.sublimetext.com/forum/*
// @match http://sublimetext.com/forum/*
// @license WTFPL
// @run-at document-end
// ==/UserScript==

(function(window){
var d = document.querySelectorAll(‘link’);
for (var i in d) {
if (d*.media == “screen, projection”) {
var q = d*.href;
}
}
var x = document.createElement(‘link’);
x.rel = “stylesheet”;
x.href = q.replace(‘id=2’, ‘id=1’);
document.head.appendChild(x);
}(unsafeWindow));

[/code]**

0 Likes

#3

[quote=“deadeye536”]I threw together a quick userscript that kinda fixes it.

Link: http://userscripts.org/scripts/review/478137
[/quote]

Thanks…this works very well

0 Likes

#4

Your userscript is really great, works like a charm.
I really haven’t a single clue how you done it, though.

0 Likes