Software: Microsoft-IIS/10.0. PHP/7.4.33 uname -a: Windows NT LAKE 10.0 build 20348 (Windows Server 2016) AMD64 IWPD_801(traduongco) Safe-mode: OFF (not secure) D:\vhosts\traduong.com.vn\admin.traduong.com.vn\Content\admin\assets\js\pages\ drwxrwxrwx | |
| Viewing file: Select action/file-type: /******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId]) {
/******/ return installedModules[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
/******/
/******/ // define getter function for harmony exports
/******/ __webpack_require__.d = function(exports, name, getter) {
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/ }
/******/ };
/******/
/******/ // define __esModule on exports
/******/ __webpack_require__.r = function(exports) {
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/ }
/******/ Object.defineProperty(exports, '__esModule', { value: true });
/******/ };
/******/
/******/ // create a fake namespace object
/******/ // mode & 1: value is a module id, require it
/******/ // mode & 2: merge all properties of value into the ns
/******/ // mode & 4: return value when already ns object
/******/ // mode & 8|1: behave like require
/******/ __webpack_require__.t = function(value, mode) {
/******/ if(mode & 1) value = __webpack_require__(value);
/******/ if(mode & 8) return value;
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/ var ns = Object.create(null);
/******/ __webpack_require__.r(ns);
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/ return ns;
/******/ };
/******/
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
/******/
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "";
/******/
/******/
/******/ // Load entry module and return exports
/******/ return __webpack_require__(__webpack_require__.s = 0);
/******/ })
/************************************************************************/
/******/ ({
/***/ "./app/assets/es6/pages/chartist.js":
/*!******************************************!*\
!*** ./app/assets/es6/pages/chartist.js ***!
\******************************************/
/*! no static exports found */
/***/ (function(module, exports) {
eval("class ChartChartist {\r\n\r\n static init() {\r\n\r\n new Chartist.Line('#simple-line-chart', {\r\n\t\t\tlabels: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday'],\r\n\t\t\tseries: [\r\n [2, 11, 6, 8, 15],\r\n [2, 8, 3, 4, 9]\r\n\t\t\t]\r\n\t\t }, {\r\n\t\t\tfullWidth: true,\r\n\t\t\tchartPadding: {\r\n\t\t\t right: 40\r\n\t\t\t}\r\n });\r\n \r\n\t\tconst times = (n)=> {\r\n\t\t\treturn Array.apply(null, new Array(n));\r\n\t\t};\r\n\t\t\t\r\n\t\tconst lineScatterdata = times(52).map(Math.random).reduce((data, rnd, index)=> {\r\n\t\t\tdata.labels.push(index + 1);\r\n\t\t\tdata.series.forEach((series)=> {\r\n\t\t\t\tseries.push(Math.random() * 100)\r\n\t\t\t});\r\n\t\t\t\r\n\t\t\treturn data;\r\n\t\t}, {\r\n\t\t\tlabels: [],\r\n\t\t\tseries: times(4).map(()=> { return new Array() })\r\n\t\t});\r\n\t\t\t\r\n\t\tconst lineScatterOptions = {\r\n\t\t\tshowLine: false,\r\n\t\t\taxisX: {\r\n\t\t\t\tlabelInterpolationFnc: (value, index)=> {\r\n\t\t\t\t return index % 13 === 0 ? 'W' + value : null;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t};\r\n\t\t\t\r\n\t\tconst lineScatterResponsiveOptions = [\r\n\t\t\t['screen and (min-width: 640px)', {\r\n\t\t\t\taxisX: {\r\n labelInterpolationFnc: (value, index) => {\r\n return index % 4 === 0 ? 'W' + value : null;\r\n }\r\n\t\t\t\t}\r\n\t\t\t}]\r\n\t\t];\r\n\t\t\t\r\n\t\tnew Chartist.Line('#line-scatter-chart', lineScatterdata, lineScatterOptions, lineScatterResponsiveOptions);\r\n\r\n new Chartist.Line('#line-chart-area', {\r\n\t\t\tlabels: [1, 2, 3, 4, 5, 6, 7, 8],\r\n\t\t\tseries: [\r\n\t\t\t [5, 9, 7, 8, 5, 3, 5, 4]\r\n\t\t\t]\r\n\t\t }, {\r\n\t\t\t\tlow: 0,\r\n\t\t\t\tshowArea: true\r\n\t\t});\r\n\r\n const biPolarBarData = {\r\n\t\t\tlabels: ['W1', 'W2', 'W3', 'W4', 'W5', 'W6', 'W7', 'W8', 'W9', 'W10'],\r\n\t\t\tseries: [\r\n\t\t\t\t[1, 2, 4, 8, 6, -2, -1, -4, -6, -2]\r\n\t\t\t]\r\n\t\t};\r\n\t\t\r\n\t\tconst biPolarBarOptions = {\r\n\t\t\thigh: 10,\r\n\t\t\tlow: -10,\r\n\t\t\taxisX: {\r\n\t\t\t\tlabelInterpolationFnc: function(value, index) {\r\n\t\t\t\t\treturn index % 2 === 0 ? value : null;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t};\r\n\t\t\r\n new Chartist.Bar('#bi-polar-bar', biPolarBarData, biPolarBarOptions);\r\n \r\n new Chartist.Bar('#stacked-bar', {\r\n\t\t\tlabels: ['Q1', 'Q2', 'Q3', 'Q4'],\r\n\t\t\tseries: [\r\n\t\t\t\t[800000, 1200000, 1400000, 1300000],\r\n\t\t\t\t[200000, 400000, 500000, 300000],\r\n\t\t\t\t[100000, 200000, 400000, 600000]\r\n\t\t\t]\r\n\t\t}, {\r\n\t\t\tstackBars: true,\r\n\t\t\taxisY: {\r\n\t\t\t\tlabelInterpolationFnc: function(value) {\r\n\t\t\t\t\treturn (value / 1000) + 'k';\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}).on('draw', function(data) {\r\n\t\t\tif(data.type === 'bar') {\r\n\t\t\t\tdata.element.attr({\r\n\t\t\t\t\tstyle: 'stroke-width: 30px'\r\n\t\t\t\t});\r\n\t\t\t}\r\n });\r\n \r\n new Chartist.Bar('#horizontal-bar', {\r\n\t\t\tlabels: ['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'],\r\n\t\t\tseries: [\r\n\t\t\t\t[5, 4, 3, 7, 5, 10, 3]\r\n\t\t\t]\r\n\t\t}, {\r\n\t\t\tseriesBarDistance: 10,\r\n\t\t\treverseData: true,\r\n\t\t\thorizontalBars: true,\r\n\t\t\taxisY: {\r\n\t\t\t\toffset: 70\r\n\t\t\t}\r\n\t\t});\r\n\r\n new Chartist.Pie('#gauge-chart', {\r\n\t\t\tseries: [20, 10, 30, 40]\r\n\t\t}, {\r\n\t\t\tdonut: true,\r\n\t\t\tdonutWidth: 60,\r\n\t\t\tstartAngle: 270,\r\n\t\t\ttotal: 200,\r\n\t\t\tshowLabel: false\r\n });\r\n \r\n new Chartist.Pie('#donut-chart', {\r\n\t\t\tseries: [20, 10, 30, 40]\r\n\t\t\t}, {\r\n\t\t\tdonut: true,\r\n\t\t\tdonutWidth: 60,\r\n\t\t\tdonutSolid: true,\r\n\t\t\tstartAngle: 270,\r\n\t\t\tshowLabel: true\r\n\t\t});\r\n }\r\n}\r\n\r\n$(() => { ChartChartist.init(); });\r\n\r\n\n\n//# sourceURL=webpack:///./app/assets/es6/pages/chartist.js?");
/***/ }),
/***/ 0:
/*!************************************************!*\
!*** multi ./app/assets/es6/pages/chartist.js ***!
\************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
eval("module.exports = __webpack_require__(/*! C:\\Users\\Nate\\Desktop\\themeforest selling\\Enlink-bootstrap\\v1.0.0\\Enlink - Bootstrap Admin Template\\demo\\app\\assets\\es6\\pages\\chartist.js */\"./app/assets/es6/pages/chartist.js\");\n\n\n//# sourceURL=webpack:///multi_./app/assets/es6/pages/chartist.js?");
/***/ })
/******/ }); |
:: Command execute :: | |
--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.5907 ]-- |