As discussed on T197834:
>>! In T197834#4305356, @matmarex wrote:
> The mobile wikitext editor is always used on Minerva skin, in both mobile and desktop mode, even though the desktop editor is much more useful on desktop. (…)
>
> The desktop editor is always used on all other skins, even in mobile mode, even though it seems to me that the mobile editor would work fine with other skins, (…).
>
> Can we instead change this behavior, so that the mobile editor is used on mobile regardless of skin, and the desktop editor is used on desktop regardless of skin?
= Developer notes
The following code is the minimum needed to get editor showing on the Timeless mobile skin with some obvious challenges to work out:
```
mw.config.set('wgMinervaMenuData', {})
mw.loader.using('skins.minerva.editor').then(function() {
mw.mobileFrontend.require('mobile.startup/Overlay').prototype.appendToElement = 'body'
window.location.hash = '#/editor/0';
} )
```