Add ES6 import hack for 'browser'

This commit is contained in:
Dmitry Lyzo 2020-08-02 15:25:20 +03:00
parent dbd6d2fb35
commit 40b6403134
12 changed files with 21 additions and 0 deletions

View file

@ -1,6 +1,8 @@
define(["browser", "dom", "css!./navdrawer", "scrollStyles"], function (browser, dom) {
"use strict";
browser = browser.default || browser;
return function (options) {
function getTouches(e) {
return e.changedTouches || e.targetTouches || e.touches;