How to use the hammerjs.Hammer.DIRECTION_VERTICAL function in hammerjs

To help you get started, we’ve selected a few hammerjs examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github fivethree-team / ionic-4-components / dist / ionic-material-dialog / esm5 / lib / dialog.module.js View on Github external
function MyHammerConfig() {
        var _this = _super !== null && _super.apply(this, arguments) || this;
        _this.overrides = /** @type {?} */ ({
            pan: { direction: Hammer.DIRECTION_VERTICAL, threshold: 3 },
        });
        return _this;
    }
    return MyHammerConfig;
github fivethree-team / ionic-4-components / dist / ionic-material-dialog / fesm2015 / ionic-material-dialog.js View on Github external
constructor() {
        super(...arguments);
        this.overrides = /** @type {?} */ ({
            pan: { direction: Hammer$1.DIRECTION_VERTICAL, threshold: 3 },
        });
    }
}
github fivethree-team / ionic-4-components / dist / ionic-material-dialog / fesm5 / ionic-material-dialog.js View on Github external
function MyHammerConfig() {
        var _this = _super !== null && _super.apply(this, arguments) || this;
        _this.overrides = /** @type {?} */ ({
            pan: { direction: Hammer$1.DIRECTION_VERTICAL, threshold: 3 },
        });
        return _this;
    }
    return MyHammerConfig;
github fivethree-team / ionic-4-components / dist / ionic-material-dialog / esm2015 / lib / dialog.module.js View on Github external
constructor() {
        super(...arguments);
        this.overrides = /** @type {?} */ ({
            pan: { direction: Hammer.DIRECTION_VERTICAL, threshold: 3 },
        });
    }
}