Skip to content

Commit

Permalink
Version 1.2.1 - (Stable Version) (#18)
Browse files Browse the repository at this point in the history
* Update README.md

* responsive issue fixed

* class changed to id

* icons changed

* text color not showing on some website issue fixed

* after refresh 2-cursor triangle not loading issue fixed

* after refresh active stage (1,2,3) show added

* fixed triangle cursor added (pre-created)

* 'reset all button' css style code position changed

* code reformatted and some responsive issues fixed

* version change commit

* min.js file update and code formatted

* icon duplicate issue fixed

* user select removed

* modal scrollbar colour changed

* Update README.md

* code reordered

* min.js code updated

* alignment issue fixed

* cursor (focus reading and underline) not working issue fixed

* keywords updated

* cursor (focus reading and underline) not working issue fixed - min.js
  • Loading branch information
PrabothCharith authored May 2, 2024
1 parent c80b4d2 commit 53d0879
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion accessibility-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ const accessibilityMenuStyles = `
}
#accessibility-modal #headerContent p {
margin-top: 15px;
font-size: 20px;
font-weight: 600;
}
Expand Down Expand Up @@ -1473,6 +1472,8 @@ document.addEventListener("DOMContentLoaded", function() {
item.querySelector('.acc-progress-child-1').classList.add('active');
item.querySelector('.acc-progress-child-2').classList.remove('active');
item.querySelector('.acc-progress-child-3').classList.remove('active');
cursor.style.width = '50px';
cursor.style.height = '50px';
} else if (cursorClickCount === 1) {
cursor.classList.remove('cursor-0');
cursor.classList.add('cursor-1');
Expand All @@ -1481,6 +1482,8 @@ document.addEventListener("DOMContentLoaded", function() {
item.querySelector('.acc-progress-child-1').classList.remove('active');
item.querySelector('.acc-progress-child-2').classList.add('active');
item.querySelector('.acc-progress-child-3').classList.remove('active');
cursor.style.width = '100%';
cursor.style.height = '15vh'
} else if (cursorClickCount === 2) {
cursor.classList.remove('cursor-0');
cursor.classList.remove('cursor-1');
Expand All @@ -1491,6 +1494,8 @@ document.addEventListener("DOMContentLoaded", function() {
item.querySelector('.acc-progress-child-2').classList.remove('active');
item.querySelector('.acc-progress-child-3').classList.add('active');
triangle.style.display = 'block';
cursor.style.width = '25vw';
cursor.style.height = '8px';
}
cursorClickCount++;
}
Expand Down
Loading

0 comments on commit 53d0879

Please sign in to comment.