PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.1.7.2
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.1.7.2
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
learnpress / assets / js / dist / admin / pages / dashboard.js

dashboard.js in LearnPress – WordPress LMS Plugin for Create and Sell Online Courses 4.1.7.2, at assets/js/dist/admin/pages/dashboard.js

30 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /******/ (function() { // webpackBootstrap
2 var __webpack_exports__ = {};
3 /*!*****************************************************!*\
4 !*** ./assets/src/apps/js/admin/pages/dashboard.js ***!
5 \*****************************************************/
6 document.addEventListener('DOMContentLoaded', function (event) {
7 const elements = document.querySelector('ul.lp_append_data');
8
9 const getResponse = async ele => {
10 try {
11 const response = await wp.apiFetch({
12 path: wp.url.addQueryArgs('lp/v1/orders/statistic'),
13 method: 'GET'
14 });
15
16 if (response.status === 'success' && response.data) {
17 ele.innerHTML = response.data;
18 } else {
19 ele.innerHTML = `<div class="lp-ajax-message error" style="display:block">${response.message && response.message}</div>`;
20 }
21 } catch (error) {
22 ele.innerHTML += `<div class="lp-ajax-message error" style="display:block">${error.message && error.message}</div>`;
23 }
24 };
25
26 getResponse(elements);
27 });
28 /******/ })()
29 ;
30 //# sourceMappingURL=dashboard.js.map