1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- (function (global, factory) {
- if (typeof define === "function" && define.amd) {
- define("/Plugin/bootstrap-sweetalert", ["exports", "Plugin"], factory);
- } else if (typeof exports !== "undefined") {
- factory(exports, require("Plugin"));
- } else {
- var mod = {
- exports: {}
- };
- factory(mod.exports, global.Plugin);
- global.PluginBootstrapSweetalert = mod.exports;
- }
- })(this, function (_exports, _Plugin2) {
- "use strict";
- Object.defineProperty(_exports, "__esModule", {
- value: true
- });
- _exports.default = void 0;
- _Plugin2 = babelHelpers.interopRequireDefault(_Plugin2);
- var NAME = 'sweetalert';
- var Sweetalert =
- /*#__PURE__*/
- function (_Plugin) {
- babelHelpers.inherits(Sweetalert, _Plugin);
- function Sweetalert() {
- babelHelpers.classCallCheck(this, Sweetalert);
- return babelHelpers.possibleConstructorReturn(this, babelHelpers.getPrototypeOf(Sweetalert).apply(this, arguments));
- }
- babelHelpers.createClass(Sweetalert, [{
- key: "getName",
- value: function getName() {
- return NAME;
- }
- }, {
- key: "render",
- value: function render() {
- this.$el.data('sweetalertWrapApi', this);
- }
- }, {
- key: "show",
- value: function show() {
- if (typeof swal === 'undefined') {
- return;
- }
- swal(this.options);
- }
- }], [{
- key: "api",
- value: function api() {
- return 'click|show';
- }
- }]);
- return Sweetalert;
- }(_Plugin2.default);
- _Plugin2.default.register(NAME, Sweetalert);
- var _default = Sweetalert;
- _exports.default = _default;
- });
|