Remove deprecation of `Environment.touch()`
authorMatthias Schmidt <gravatronics@live.com>
Fri, 12 Mar 2021 11:57:40 +0000 (12:57 +0100)
committerMatthias Schmidt <gravatronics@live.com>
Fri, 12 Mar 2021 12:00:48 +0000 (13:00 +0100)
The function is still actively used and there is no better way of doing it.

See  #3876

ts/WoltLabSuite/Core/Environment.ts

index fbfba80d4716a177d20742be45527bd511f9827b..973b5dd88b6f22a905df6c79307973afaaa200fe 100644 (file)
@@ -104,8 +104,6 @@ export function platform(): string {
  * Returns true if browser is potentially used with a touchscreen.
  *
  * Warning: Detecting touch is unreliable and should be avoided at all cost.
- *
- * @deprecated  3.0 - exists for backward-compatibility only, will be removed in the future
  */
 export function touch(): boolean {
   return _touch;