You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by gj...@apache.org on 2012/10/03 14:10:06 UTC

svn commit: r1393450 - /incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_prefs_pygments.html

Author: gjm
Date: Wed Oct  3 12:10:06 2012
New Revision: 1393450

URL: http://svn.apache.org/viewvc?rev=1393450&view=rev
Log:
disabling syntax highlighting stylesheets to fix highlighting failure on webkit browsers - fixes #205 (from peter)

Modified:
    incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_prefs_pygments.html

Modified: incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_prefs_pygments.html
URL: http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_prefs_pygments.html?rev=1393450&r1=1393449&r2=1393450&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_prefs_pygments.html (original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_prefs_pygments.html Wed Oct  3 12:10:06 2012
@@ -37,6 +37,7 @@
         (function($){
               window.switchStyleSheet = function(title) {
                 $('link[rel="stylesheet"][title]').each(function() {
+                  this.disabled = true;
                   this.disabled = this.getAttribute('title') != title;
                 });
               }