Lines Matching refs:e

40       const onErr = (e)=>console.error(e);  argument
78 e: { property
96 cls: function(){this.e.output.innerHTML = ''},
101 this.e.output.append(ln);
180 tx.executeSql(s,[], ()=>{}, (t,e)=>{
181 console.error("WebSQL error",e,"SQL =",s);
182 who.logErr(e.message);
188 }catch(e){
189 who.logErr("transaction():",e.message);
190 throw e;
197 db.handle.transaction(transaction, (e)=>{
198 who.logErr("Ignoring and contiuing:",e.message)
208 }catch(e){
210 console.error("websql error:",e);
211 who.logErr(e.message);
259 }catch(e){
262 reject(e);
278 (e)=>this.logErr("Error via execSql("+name+",...):",e.message)
304 const sel = this.e.selSql;
319 }catch(e){
320 this.logErr(e.message);
321 throw e;
354 }catch(e){
355 this.logErr(e.message);
356 throw e;
366 this.e.fsToolbar.disabled = disable;
439 ? this.dbs[this.e.selImpl.value]
456 for(let opt of this.e.selImpl.options){
480 const dbId = this.e.selImpl.value;
502 }catch(e){
536 if(this.e.cbReverseLog.checked){
537 this.e.output.classList.add('reverse');
539 this.e.cbReverseLog.addEventListener('change', function(){
540 who.e.output.classList[this.checked ? 'add' : 'remove']('reverse');
542 this.e.btnClear.addEventListener('click', ()=>this.cls(), false);
543 this.e.btnRun.addEventListener('click', function(){
544 if(!who.e.selSql.value) return;
545 who.evalFile(who.e.selSql.value);
547 this.e.btnRunNext.addEventListener('click', function(){
548 ++who.e.selSql.selectedIndex;
549 if(!who.e.selSql.value) return;
550 who.evalFile(who.e.selSql.value);
552 this.e.btnReset.addEventListener('click', function(){
555 this.e.btnExportMetrics.addEventListener('click', function(){
561 this.e.selImpl.addEventListener('change', function(){
564 this.e.btnRunRemaining.addEventListener('click', async function(){
565 let v = who.e.selSql.value;
573 ++who.e.selSql.selectedIndex;
574 v = who.e.selSql.value;