modified code for withdraw cash logic

This commit is contained in:
Abhishek Sinha 2019-09-06 15:13:48 +05:30
parent 3c8143543a
commit 275fc69b23
2 changed files with 3 additions and 10 deletions

View File

@ -11166,6 +11166,7 @@
</script>
<script>
function search_deposits() {
// Declare variables
var input, filter, table, tr, td, i, txtValue;

View File

@ -46,22 +46,18 @@
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*/
::-webkit-scrollbar {
width: 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-border-radius: 10px;
border-radius: 10px;
}
/*add a shadow to the scrollbar here*/
::-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-border-radius: 10px;
border-radius: 10px;
@ -20844,10 +20840,6 @@
function readAllDB(tablename, filter_deletables=true, limit=0) {
return new Promise((resolve, reject) => {
let response = [];
// let keyRangeValue;
// if (limit>0) {
// keyRangeValue = IDBKeyRange.lowerBound(limit);
// }
var objectStore = db.transaction(tablename).objectStore(tablename);
objectStore.openCursor().onsuccess = function (event) {
let cursor = event.target.result;