247 lines
8.5 KiB
JavaScript
247 lines
8.5 KiB
JavaScript
![]() |
/******/ (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 = "/js/";
|
||
|
/******/
|
||
|
/******/
|
||
|
/******/ // Load entry module and return exports
|
||
|
/******/ return __webpack_require__(__webpack_require__.s = 0);
|
||
|
/******/ })
|
||
|
/************************************************************************/
|
||
|
/******/ ({
|
||
|
|
||
|
/***/ "../deps/phoenix_html/priv/static/phoenix_html.js":
|
||
|
/*!********************************************************!*\
|
||
|
!*** ../deps/phoenix_html/priv/static/phoenix_html.js ***!
|
||
|
\********************************************************/
|
||
|
/*! no static exports found */
|
||
|
/***/ (function(module, exports, __webpack_require__) {
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
|
||
|
(function () {
|
||
|
var PolyfillEvent = eventConstructor();
|
||
|
|
||
|
function eventConstructor() {
|
||
|
if (typeof window.CustomEvent === "function") return window.CustomEvent; // IE<=9 Support
|
||
|
|
||
|
function CustomEvent(event, params) {
|
||
|
params = params || {
|
||
|
bubbles: false,
|
||
|
cancelable: false,
|
||
|
detail: undefined
|
||
|
};
|
||
|
var evt = document.createEvent('CustomEvent');
|
||
|
evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail);
|
||
|
return evt;
|
||
|
}
|
||
|
|
||
|
CustomEvent.prototype = window.Event.prototype;
|
||
|
return CustomEvent;
|
||
|
}
|
||
|
|
||
|
function buildHiddenInput(name, value) {
|
||
|
var input = document.createElement("input");
|
||
|
input.type = "hidden";
|
||
|
input.name = name;
|
||
|
input.value = value;
|
||
|
return input;
|
||
|
}
|
||
|
|
||
|
function handleClick(element) {
|
||
|
var to = element.getAttribute("data-to"),
|
||
|
method = buildHiddenInput("_method", element.getAttribute("data-method")),
|
||
|
csrf = buildHiddenInput("_csrf_token", element.getAttribute("data-csrf")),
|
||
|
form = document.createElement("form"),
|
||
|
target = element.getAttribute("target");
|
||
|
form.method = element.getAttribute("data-method") === "get" ? "get" : "post";
|
||
|
form.action = to;
|
||
|
form.style.display = "hidden";
|
||
|
if (target) form.target = target;
|
||
|
form.appendChild(csrf);
|
||
|
form.appendChild(method);
|
||
|
document.body.appendChild(form);
|
||
|
form.submit();
|
||
|
}
|
||
|
|
||
|
window.addEventListener("click", function (e) {
|
||
|
var element = e.target;
|
||
|
|
||
|
while (element && element.getAttribute) {
|
||
|
var phoenixLinkEvent = new PolyfillEvent('phoenix.link.click', {
|
||
|
"bubbles": true,
|
||
|
"cancelable": true
|
||
|
});
|
||
|
|
||
|
if (!element.dispatchEvent(phoenixLinkEvent)) {
|
||
|
e.preventDefault();
|
||
|
e.stopImmediatePropagation();
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
if (element.getAttribute("data-method")) {
|
||
|
handleClick(element);
|
||
|
e.preventDefault();
|
||
|
return false;
|
||
|
} else {
|
||
|
element = element.parentNode;
|
||
|
}
|
||
|
}
|
||
|
}, false);
|
||
|
window.addEventListener('phoenix.link.click', function (e) {
|
||
|
var message = e.target.getAttribute("data-confirm");
|
||
|
|
||
|
if (message && !window.confirm(message)) {
|
||
|
e.preventDefault();
|
||
|
}
|
||
|
}, false);
|
||
|
})();
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "./css/app.scss":
|
||
|
/*!**********************!*\
|
||
|
!*** ./css/app.scss ***!
|
||
|
\**********************/
|
||
|
/*! no static exports found */
|
||
|
/***/ (function(module, exports, __webpack_require__) {
|
||
|
|
||
|
// extracted by mini-css-extract-plugin
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "./js/app.js":
|
||
|
/*!*******************!*\
|
||
|
!*** ./js/app.js ***!
|
||
|
\*******************/
|
||
|
/*! no exports provided */
|
||
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||
|
|
||
|
"use strict";
|
||
|
__webpack_require__.r(__webpack_exports__);
|
||
|
/* harmony import */ var _semantic_src_semantic_less__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../semantic/src/semantic.less */ "./semantic/src/semantic.less");
|
||
|
/* harmony import */ var _semantic_src_semantic_less__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_semantic_src_semantic_less__WEBPACK_IMPORTED_MODULE_0__);
|
||
|
/* harmony import */ var _css_app_scss__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../css/app.scss */ "./css/app.scss");
|
||
|
/* harmony import */ var _css_app_scss__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_css_app_scss__WEBPACK_IMPORTED_MODULE_1__);
|
||
|
/* harmony import */ var phoenix_html__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! phoenix_html */ "../deps/phoenix_html/priv/static/phoenix_html.js");
|
||
|
/* harmony import */ var phoenix_html__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(phoenix_html__WEBPACK_IMPORTED_MODULE_2__);
|
||
|
// We need to import the CSS so that webpack will load it.
|
||
|
// The MiniCssExtractPlugin is used to separate it out into
|
||
|
// its own CSS file.
|
||
|
|
||
|
// webpack automatically bundles all modules in your
|
||
|
// entry points. Those entry points can be configured
|
||
|
// in "webpack.config.js".
|
||
|
//
|
||
|
// Import deps with the dep name or local files with a relative path, for example:
|
||
|
//
|
||
|
// import {Socket} from "phoenix"
|
||
|
// import socket from "./socket"
|
||
|
//
|
||
|
|
||
|
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ "./semantic/src/semantic.less":
|
||
|
/*!************************************!*\
|
||
|
!*** ./semantic/src/semantic.less ***!
|
||
|
\************************************/
|
||
|
/*! no static exports found */
|
||
|
/***/ (function(module, exports, __webpack_require__) {
|
||
|
|
||
|
// extracted by mini-css-extract-plugin
|
||
|
|
||
|
/***/ }),
|
||
|
|
||
|
/***/ 0:
|
||
|
/*!*************************!*\
|
||
|
!*** multi ./js/app.js ***!
|
||
|
\*************************/
|
||
|
/*! no static exports found */
|
||
|
/***/ (function(module, exports, __webpack_require__) {
|
||
|
|
||
|
module.exports = __webpack_require__(/*! ./js/app.js */"./js/app.js");
|
||
|
|
||
|
|
||
|
/***/ })
|
||
|
|
||
|
/******/ });
|
||
|
//# sourceMappingURL=app.js.map
|