From 9bb1ebb37d8b0bb2cb8689abd62a030e9d69e44d Mon Sep 17 00:00:00 2001 From: Brian Ford Date: Fri, 3 May 2013 16:05:49 -0400 Subject: [PATCH] fix(style): prefix highlight class name --- js/inject/debug.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/inject/debug.js b/js/inject/debug.js index 0ae3544..c4b12c0 100644 --- a/js/inject/debug.js +++ b/js/inject/debug.js @@ -359,7 +359,7 @@ var inject = function () { '' + '' + '' + '' + @@ -423,12 +423,12 @@ var inject = function () { function markHoverElt () { if (hoverScopeElt) { - hoverScopeElt.addClass('batarang-selected'); + hoverScopeElt.addClass('bat-selected'); } } function unmarkHoverElt () { if (hoverScopeElt) { - hoverScopeElt.removeClass('batarang-selected'); + hoverScopeElt.removeClass('bat-selected'); } }