mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 17:45:10 +01:00
ff4067e637
This reverts commit bed067f9bc
.
Conflicts:
js/actions/user_actions.js
js/stores/session_persistent_store.js
js/stores/user_store.js
js/utils/feature_detection_utils.js
27 lines
713 B
JavaScript
27 lines
713 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* PLEASE
|
|
*
|
|
* postfix your function with '-Available'.
|
|
*
|
|
* Like this:
|
|
*
|
|
* featureNameAvailable
|
|
*
|
|
*/
|
|
|
|
|
|
/**
|
|
* Even though it is not recommended to check (and maintain) the used browser,
|
|
* we're checking the browser's ability to drag and drop with this statement as
|
|
* there is no other way of detecting it another way.
|
|
*
|
|
* See this discussion for clarity:
|
|
* - https://github.com/Modernizr/Modernizr/issues/57#issuecomment-35831605
|
|
*
|
|
* @type {bool} Is drag and drop available on this browser
|
|
*/
|
|
export const dragAndDropAvailable = 'draggable' in document.createElement('div') &&
|
|
!/Mobile|Android|Slick\/|Kindle|BlackBerry|Opera Mini|Opera Mobi/i.test(navigator.userAgent);
|