a zip code crypto-currency system good for red ONLY

gesture-config.js 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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", "@angular/core", "@angular/platform-browser"], factory);
  18. }
  19. })(function (require, exports) {
  20. "use strict";
  21. Object.defineProperty(exports, "__esModule", { value: true });
  22. var core_1 = require("@angular/core");
  23. var platform_browser_1 = require("@angular/platform-browser");
  24. /**
  25. * @hidden
  26. * This class overrides the default Angular gesture config.
  27. */
  28. var IonicGestureConfig = (function (_super) {
  29. __extends(IonicGestureConfig, _super);
  30. function IonicGestureConfig() {
  31. return _super !== null && _super.apply(this, arguments) || this;
  32. }
  33. IonicGestureConfig.prototype.buildHammer = function (element) {
  34. var mc = new window.Hammer(element);
  35. for (var eventName in this.overrides) {
  36. mc.get(eventName).set(this.overrides[eventName]);
  37. }
  38. return mc;
  39. };
  40. IonicGestureConfig.decorators = [
  41. { type: core_1.Injectable },
  42. ];
  43. /** @nocollapse */
  44. IonicGestureConfig.ctorParameters = function () { return []; };
  45. return IonicGestureConfig;
  46. }(platform_browser_1.HammerGestureConfig));
  47. exports.IonicGestureConfig = IonicGestureConfig;
  48. });
  49. //# sourceMappingURL=gesture-config.js.map