Browse Source

duration fix

master
farhan 4 months ago
parent
commit
4b708b2c80
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      resources/js/app.js

+ 2
- 2
resources/js/app.js View File

130
                 if (screenWidth < 600) {
130
                 if (screenWidth < 600) {
131
                     duration = 3000; // Smaller screen
131
                     duration = 3000; // Smaller screen
132
                 } else if (screenWidth < 1200) {
132
                 } else if (screenWidth < 1200) {
133
-                    duration = 4000; // Medium screen
133
+                    duration = 6000; // Medium screen
134
                 } else {
134
                 } else {
135
-                    duration = 7000; // Larger screen
135
+                    duration = 10000; // Larger screen
136
                 }
136
                 }
137
                 var startTime = null;
137
                 var startTime = null;
138
 
138
 

Loading…
Cancel
Save