New indexValidator

This commit is contained in:
Keerthi Niranjan 2017-08-02 17:18:49 +05:30 committed by Keerthi Niranjan
parent d3d3b0e58a
commit 53dbb3c51d
3 changed files with 3 additions and 4 deletions

View File

@ -130,12 +130,12 @@
alert('Library is not initiated. Init first...');
return;
}
//while (a < 100000){
// a++;
let out;
table.innerHTML = '';
table.classList.remove('hidden');
search.query(queryEl.value, senderIdEl.value, threadIdEl.value, null, startEl.value, endEl.value, limitEl.value, offsetEl.value, 0).then(function (result) {
let startDate = new Date(startEl.value);
let endDate = new Date(endEl.value);
search.query(queryEl.value, senderIdEl.value, threadIdEl.value, null, startDate, endDate, limitEl.value, offsetEl.value, 0).then(function (result) {
out = result;
var th = document.createElement('tr');
var th1 = document.createElement('td');
@ -164,7 +164,6 @@
}).catch(function (err) {
resultsEl.innerHTML = err;
});
//}
});
sendMessage.addEventListener('click', function () {

Binary file not shown.

Binary file not shown.