-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove unlimited option and switch output count to range input
- Loading branch information
Showing
2 changed files
with
12 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,16 +50,11 @@ | |
<button onclick="loadIPRanges('gcore')" class="badge bg-gcore border-0 me-1">جیکور</button> | ||
<button onclick="loadIPRanges('fastly')" class="badge bg-fastly border-0 me-1">فستلی</button> | ||
<textarea id="ipRange" class="form-control" rows="4" placeholder="هر رنج آی پی در یک خط" dir="ltr"></textarea> | ||
</div> | ||
|
||
<label for="outputCount" class="form-label mt-3">تعداد خروجیها</label> | ||
<select id="outputCount" class="form-control"> | ||
<option value="10000">10000</option> | ||
<option value="20000">20000</option> | ||
<option value="30000">30000</option> | ||
<option value="40000">40000</option> | ||
<option value="50000">50000</option> | ||
<option value="unlimited">بدون محدودیت</option> | ||
</select> | ||
<div class="col-12"> | ||
<label for="outputCount" class="form-label mt-3">تعداد خروجیها: <span id="outputCountValue">5000</span></label> | ||
<input type="range" class="form-range" min="1000" max="50000" step="1000" id="outputCount" value="5000" oninput="updateOutputCountValue()"> | ||
</div> | ||
|
||
<div class="col-12 mt-3" id="listFields" style="display: none;"> | ||
|
@@ -76,6 +71,6 @@ | |
</div> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/ipaddr.js/2.0.1/ipaddr.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/base64.min.js"></script> | ||
<script src="assets/js/script.js?v=1.0.2"></script> | ||
<script src="assets/js/script.js?v=1.0.3"></script> | ||
</body> | ||
</html> |