Skip to content

Commit

Permalink
Fix: Cleaning up incorrect selectors (#157)
Browse files Browse the repository at this point in the history
  • Loading branch information
pramodsum authored Mar 30, 2018
1 parent b110632 commit 1710ece
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,11 @@ export const SELECTOR_DIALOG_CLOSE = `.${CLASS_DIALOG_CLOSE}`;

// Annotation mode CSS constants
export const CLASS_ANNOTATION_MODE = 'ba-annotation-mode';
export const SELECTOR_ANNOTATION_MODE = `.${CLASS_DIALOG_CLOSE}`;
export const SELECTOR_ANNOTATION_MODE = `.${CLASS_ANNOTATION_MODE}`;
export const CLASS_ANNNOTATION_MODE_BACKGROUND = 'ba-annotate-mode-background';
export const SELECTOR_ANNNOTATION_MODE_BACKGROUND = `.${CLASS_DIALOG_CLOSE}`;
export const SELECTOR_ANNNOTATION_MODE_BACKGROUND = `.${CLASS_ANNNOTATION_MODE_BACKGROUND}`;
export const CLASS_ANNOTATION_BUTTON_POINT_EXIT = 'ba-btn-annotate-point-exit';
export const SELECTOR_ANNOTATION_BUTTON_POINT_EXIT = `.${CLASS_DIALOG_CLOSE}`;
export const SELECTOR_ANNOTATION_BUTTON_POINT_EXIT = `.${CLASS_ANNOTATION_BUTTON_POINT_EXIT}`;

export const CLASS_ANNOTATION_MODE_HEADER = 'ba-mode-header';
export const SELECTOR_ANNOTATION_MODE_HEADER = `.${CLASS_ANNOTATION_MODE_HEADER}`;
Expand Down

0 comments on commit 1710ece

Please sign in to comment.