fix(style): prefix highlight class name

test-unit-sauce
Brian Ford 11 years ago
parent 898fe826ba
commit 9bb1ebb37d

@ -359,7 +359,7 @@ var inject = function () {
'<button style="position: absolute; top: -15px; left: 10px;">+</button>' +
'<button style="position: absolute; top: -15px; right: -15px;">x</button>' +
'<style>' +
'.ng-scope.batarang-selected { border: 1px solid red; } ' +
'.ng-scope.bat-selected { border: 1px solid red; } ' +
'.bat-indent { margin-left: 20px; }' +
'</style>' +
'</div>' +
@ -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');
}
}