modified code for withdraw cash logic
This commit is contained in:
parent
3c8143543a
commit
275fc69b23
@ -11166,6 +11166,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|
||||||
function search_deposits() {
|
function search_deposits() {
|
||||||
// Declare variables
|
// Declare variables
|
||||||
var input, filter, table, tr, td, i, txtValue;
|
var input, filter, table, tr, td, i, txtValue;
|
||||||
|
|||||||
@ -46,22 +46,18 @@
|
|||||||
cursor:pointer;
|
cursor:pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ::-webkit-scrollbar {
|
|
||||||
height: 4px; /* height of horizontal scrollbar ← You're missing this */
|
|
||||||
/* width: 4px; /* width of vertical scrollbar */
|
|
||||||
/* border: 1px solid #d5d5d5;
|
|
||||||
} */
|
|
||||||
|
|
||||||
/*change the thinkness of the scrollbar here*/
|
/*change the thinkness of the scrollbar here*/
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar {
|
||||||
width: 10px;
|
width: 10px;
|
||||||
height: 10px;
|
height: 10px;
|
||||||
|
box-shadow: inset 0 0 6px rgba(0,0,0,0);
|
||||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
|
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
|
||||||
-webkit-border-radius: 10px;
|
-webkit-border-radius: 10px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
/*add a shadow to the scrollbar here*/
|
/*add a shadow to the scrollbar here*/
|
||||||
::-webkit-scrollbar-track {
|
::-webkit-scrollbar-track {
|
||||||
|
box-shadow: inset 0 0 0px rgba(0,0,0,0);
|
||||||
-webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0);
|
-webkit-box-shadow: inset 0 0 0px rgba(0,0,0,0);
|
||||||
-webkit-border-radius: 10px;
|
-webkit-border-radius: 10px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
@ -20844,10 +20840,6 @@
|
|||||||
function readAllDB(tablename, filter_deletables=true, limit=0) {
|
function readAllDB(tablename, filter_deletables=true, limit=0) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
let response = [];
|
let response = [];
|
||||||
// let keyRangeValue;
|
|
||||||
// if (limit>0) {
|
|
||||||
// keyRangeValue = IDBKeyRange.lowerBound(limit);
|
|
||||||
// }
|
|
||||||
var objectStore = db.transaction(tablename).objectStore(tablename);
|
var objectStore = db.transaction(tablename).objectStore(tablename);
|
||||||
objectStore.openCursor().onsuccess = function (event) {
|
objectStore.openCursor().onsuccess = function (event) {
|
||||||
let cursor = event.target.result;
|
let cursor = event.target.result;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user