Merge branch 'master' into migrate-to-ES6-48

This commit is contained in:
Cameron 2020-08-02 15:16:13 +01:00 committed by GitHub
commit ce2b2d70ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 20 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;

View file

@ -1,6 +1,8 @@
define(['browser', 'layoutManager', 'dom', 'focusManager', 'ResizeObserver', 'scrollStyles'], function (browser, layoutManager, dom, focusManager, ResizeObserver) {
'use strict';
browser = browser.default || browser;
/**
* Return type of the value.
*