Use `dash-case` for CSS class names

pull/1/head
Daniel Gasienica 7 years ago
parent 9134701f7c
commit 9abf1f0fcd

@ -100,7 +100,7 @@
</div> </div>
</div> </div>
</div> </div>
<div class='lightboxContainer'></div> <div class='lightbox-container'></div>
</script> </script>
<script type='text/x-tmpl-mustache' id='scroll-down-button-view'> <script type='text/x-tmpl-mustache' id='scroll-down-button-view'>
<button class='text {{ cssClass }}' alt='{{ moreBelow }}'> <button class='text {{ cssClass }}' alt='{{ moreBelow }}'>

@ -1,4 +1,4 @@
.lightboxContainer { .lightbox-container {
display: none; display: none;
position: absolute; position: absolute;
top: 0; top: 0;

@ -3,10 +3,10 @@
*/ */
export const show = (element: HTMLElement): void => { export const show = (element: HTMLElement): void => {
const container: HTMLDivElement | null = document.querySelector( const container: HTMLDivElement | null = document.querySelector(
'.lightboxContainer' '.lightbox-container'
); );
if (container === null) { if (container === null) {
throw new TypeError("'.lightboxContainer' is required"); throw new TypeError("'.lightbox-container' is required");
} }
container.innerHTML = ''; container.innerHTML = '';
container.style.display = 'block'; container.style.display = 'block';
@ -15,7 +15,7 @@ export const show = (element: HTMLElement): void => {
export const hide = (): void => { export const hide = (): void => {
const container: HTMLDivElement | null = document.querySelector( const container: HTMLDivElement | null = document.querySelector(
'.lightboxContainer' '.lightbox-container'
); );
if (container === null) { if (container === null) {
return; return;

Loading…
Cancel
Save