DmitrMakeev commited on
Commit
cc5f9f7
1 Parent(s): 45cc5c4

Update ver.html

Browse files
Files changed (1) hide show
  1. ver.html +2 -2
ver.html CHANGED
@@ -76,7 +76,7 @@
76
  </div>
77
  <input type="file" id="fileInput" accept=".txt">
78
  <button id="verifyButton">Проверить наличие WhatsApp</button>
79
- <a id="downloadLink" style="display: none;">Скачать телефоны с WhatsApp</a>
80
 
81
  <script>
82
  document.getElementById('verifyButton').addEventListener('click', function() {
@@ -97,7 +97,7 @@
97
  reader.onload = function(event) {
98
  const text = event.target.result;
99
  const phones = text.split('\n').map(phone => phone.trim()).filter(phone => phone);
100
- verifyPhones(phones, apiKey, 1000); // 1000 миллисекунд (1 секунда) задержка
101
  };
102
  reader.readAsText(file);
103
  });
 
76
  </div>
77
  <input type="file" id="fileInput" accept=".txt">
78
  <button id="verifyButton">Проверить наличие WhatsApp</button>
79
+ <a id="downloadLink" style="display: none;">Скачать номера с WhatsApp</a>
80
 
81
  <script>
82
  document.getElementById('verifyButton').addEventListener('click', function() {
 
97
  reader.onload = function(event) {
98
  const text = event.target.result;
99
  const phones = text.split('\n').map(phone => phone.trim()).filter(phone => phone);
100
+ verifyPhones(phones, apiKey, 500); // 1000 миллисекунд (1 секунда) задержка
101
  };
102
  reader.readAsText(file);
103
  });