Skip to content

Instantly share code, notes, and snippets.

@metaodi
Last active November 10, 2015 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save metaodi/0cab095d7bbcdcbe748f to your computer and use it in GitHub Desktop.
Save metaodi/0cab095d7bbcdcbe748f to your computer and use it in GitHub Desktop.
Remove text-rending to fix Chromium 45 bug
// ==UserScript==
// @name Remove text-rending to fix Chromium 45 bug
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match http://gitlab.liip.ch
// @grant none
// ==/UserScript==
/* jshint -W097 */
'use strict';
$(function() {
$('body').css('text-rendering', 'unset')
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment