@@ -67,7 +67,6 @@ document.addEventListener('DOMContentLoaded', function() {
6767
6868 // Track feature interaction
6969 const feature = this . dataset . feature ;
70- console . log ( 'Feature viewed:' , feature ) ;
7170
7271 // You can add analytics tracking here
7372 if ( typeof gtag !== 'undefined' ) {
@@ -134,9 +133,6 @@ document.addEventListener('DOMContentLoaded', function() {
134133 const downloadBtns = document . querySelectorAll ( 'a[href*="chromewebstore"]' ) ;
135134 downloadBtns . forEach ( btn => {
136135 btn . addEventListener ( 'click' , function ( ) {
137- // Track download click event
138- console . log ( 'Download button clicked' ) ;
139-
140136 // You can add Google Analytics or other tracking here
141137 if ( typeof gtag !== 'undefined' ) {
142138 gtag ( 'event' , 'click' , {
@@ -177,7 +173,6 @@ document.addEventListener('DOMContentLoaded', function() {
177173 this . bindEvents ( ) ;
178174 this . updateCarousel ( ) ;
179175 this . startAutoplay ( ) ;
180- console . log ( 'Carousel initialized with' , this . totalSlides , 'slides' ) ;
181176 } ,
182177
183178 setupInfiniteLoop ( ) {
@@ -270,7 +265,6 @@ document.addEventListener('DOMContentLoaded', function() {
270265 this . isAnimating = false ;
271266 }
272267
273- console . log ( 'Moved to slide' , this . getRealSlideIndex ( ) + 1 ) ;
274268 } ,
275269
276270 getRealSlideIndex ( ) {
@@ -558,4 +552,4 @@ document.querySelectorAll('.btn').forEach(button => {
558552 }
559553 }
560554 }
561- } ) ;
555+ } ) ;
0 commit comments