update bundle js

This commit is contained in:
pengfei.zhou
2020-05-06 16:21:03 +08:00
committed by osborn
parent 8f693b451d
commit c9c99cce06
7 changed files with 19 additions and 18 deletions

View File

@@ -2937,8 +2937,7 @@ class List extends Superview {
}
}
scrollToItem(context, index, config) {
var _a;
const animated = (_a = config) === null || _a === void 0 ? void 0 : _a.animated;
const animated = config === null || config === void 0 ? void 0 : config.animated;
return this.nativeChannel(context, 'scrollToItem')({ index, animated, });
}
reset() {
@@ -4199,7 +4198,7 @@ return __module.exports;
var doric_web = (function (exports, axios, sandbox) {
'use strict';
axios = axios && axios.hasOwnProperty('default') ? axios['default'] : axios;
axios = axios && Object.prototype.hasOwnProperty.call(axios, 'default') ? axios['default'] : axios;
class DoricPlugin {
constructor(context) {

File diff suppressed because one or more lines are too long