mirror of
https://github.com/czhu12/canine.git
synced 2026-05-07 20:29:49 -05:00
fix pricing chart display and wordage
This commit is contained in:
@@ -29,6 +29,7 @@ export default class extends Controller {
|
||||
// Add keyboard navigation event listener
|
||||
document.addEventListener('keydown', (e) => {
|
||||
const searchModal = document.getElementById("search_modal");
|
||||
if (!searchModal) return;
|
||||
if (!searchModal.open) return;
|
||||
|
||||
if (e.key === 'ArrowDown' || e.key === 'ArrowUp') {
|
||||
|
||||
@@ -9,7 +9,6 @@ import { Controller } from "@hotwired/stimulus"
|
||||
export default class extends Controller {
|
||||
static targets = ["typing"]
|
||||
connect() {
|
||||
console.log("Hello");
|
||||
const typed = new Typed(this.typingTarget, {
|
||||
strings: [
|
||||
'<b style="color: #7F4B8B">Sentry</b>',
|
||||
|
||||
Reference in New Issue
Block a user