a zip code crypto-currency system good for red ONLY

popover.js 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. var __extends = (this && this.__extends) || (function () {
  2. var extendStatics = Object.setPrototypeOf ||
  3. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  4. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  5. return function (d, b) {
  6. extendStatics(d, b);
  7. function __() { this.constructor = d; }
  8. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  9. };
  10. })();
  11. (function (factory) {
  12. if (typeof module === "object" && typeof module.exports === "object") {
  13. var v = factory(require, exports);
  14. if (v !== undefined) module.exports = v;
  15. }
  16. else if (typeof define === "function" && define.amd) {
  17. define(["require", "exports", "../../navigation/overlay-proxy", "./popover-impl"], factory);
  18. }
  19. })(function (require, exports) {
  20. "use strict";
  21. Object.defineProperty(exports, "__esModule", { value: true });
  22. var overlay_proxy_1 = require("../../navigation/overlay-proxy");
  23. var popover_impl_1 = require("./popover-impl");
  24. /**
  25. * @hidden
  26. */
  27. var Popover = (function (_super) {
  28. __extends(Popover, _super);
  29. function Popover(app, component, data, opts, config, deepLinker) {
  30. if (opts === void 0) { opts = {}; }
  31. var _this = _super.call(this, app, component, config, deepLinker) || this;
  32. _this.data = data;
  33. _this.opts = opts;
  34. _this.isOverlay = true;
  35. return _this;
  36. }
  37. Popover.prototype.getImplementation = function () {
  38. return new popover_impl_1.PopoverImpl(this._app, this._component, this.data, this.opts, this._config);
  39. };
  40. return Popover;
  41. }(overlay_proxy_1.OverlayProxy));
  42. exports.Popover = Popover;
  43. });
  44. //# sourceMappingURL=popover.js.map