Every line of 'vue refresh page' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
190 refresh() { 191 this.page(1); 192 this[fetchSym](); 193 }
16 doRefresh(refresher) { 17 18 setTimeout(() => { 19 refresher.complete(); 20 }, 2000); 21 }
39 refreshPages() { 40 let pages = ['1']; 41 if (this.currentPage > List2Component.pagesCountBeforeAfter + 2) { 42 pages.push('...'); 43 } 44 for (let i = Math.max(2, this.currentPage - List2Component.pagesCountBeforeAfter); 45 i <= Math.min(this.pageCount - 1, this.currentPage + List2Component.pagesCountBeforeAfter); i++) { 46 pages.push(i.toString()); 47 } 48 if (this.pageCount > this.currentPage + List2Component.pagesCountBeforeAfter + 1) { 49 pages.push('...'); 50 } 51 if (this.pageCount > 1) { 52 pages.push(this.pageCount.toString()); 53 } 54 this.pages = pages; 55 }
75 doRefresh(event: any): void { 76 forkJoin([timer(500), this.getNews()]) 77 .pipe(finalize(() => event.target.complete())) 78 .subscribe(); 79 }
101 function refresh_page(page_name) { 102 var fn = function(r, rt) { 103 render_page(page_name) 104 } 105 $c('webnotes.widgets.page.getpage', {'name':page_name, 106 stylesheets:JSON.stringify(stylesheets)}, fn); 107 }
15 componentDidMount() { 16 Ux.cycleUpdatePageList(this, "list"); 17 }
77 refreshPage() { 78 79 // New 80 this.newModelChartConfig.data[0].valueUpdated.next(this.newModelChartConfig.data[0].value++); 81 82 // Old 83 const organizationIndex = Math.floor(Math.random() * 4); 84 this.oldModelChartConfig.data[organizationIndex].valueUpdated.next(this.oldModelChartConfig.data[organizationIndex].value++); 85 }
19 public async refresh(): Promise { 20 await this._page.reload(); 21 await this._afterPageLoad(); 22 }
41 refresh() { 42 let pageId: string = null; 43 let productCode: string = null; 44 let categoryCode: string = null; 45 let catalogCode: string = null; 46 47 switch (this.latest.type) { 48 case PRODUCT_PAGE: 49 productCode = this.latest.context; 50 break; 51 case CATEGORY_PAGE: 52 categoryCode = this.latest.context; 53 break; 54 case CATALOG_PAGE: 55 catalogCode = this.latest.context; 56 break; 57 default: 58 pageId = this.latest.context; 59 } 60 this.getPageData(pageId, productCode, categoryCode, catalogCode); 61 }
109 doRefresh(refresher): void { 110 this.reload = !this.reload; 111 setTimeout(() => { 112 refresher.complete(); 113 }, 300); 114 }