devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
34 lines (33 loc) • 971 B
JavaScript
/**
* DevExtreme (esm/ui/scroll_view/ui.scrollable.device.js)
* Version: 21.1.4
* Build date: Mon Jun 21 2021
*
* Copyright (c) 2012 - 2021 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
import devices from "../../core/devices";
import {
nativeScrolling,
touch
} from "../../core/utils/support";
export var deviceDependentOptions = function() {
return [{
device: function() {
return !nativeScrolling
},
options: {
useNative: false
}
}, {
device: function(_device) {
return !devices.isSimulator() && "desktop" === devices.real().deviceType && "generic" === _device.platform
},
options: {
bounceEnabled: false,
scrollByThumb: true,
scrollByContent: touch,
showScrollbar: "onHover"
}
}]
};