== User Story
As an advanced editor, I would like to know when advanced mobile contributions are available
== Design
| person lands on page | drawer appears after short delay, taps "Enable" | advanced mode enabled, toast displays
| {F29605506} | {F29605509} | {F29605512}
== Acceptance Criteria
[] Display the modal for all logged in editors with >100 edits on the mobile website
[] The modal must be displayed only once
[] Selecting "try it out" should turn on AMC automatically (without requiring the user to go to the settings page
[] To support T226069 make sure that drawers render above overlays in the display stack (higher z-index)
= Developer notes
Things we'll need:
1) The drawer (can use existing CtaDrawer code)
```
drawer = new d( { content: 'text goes here', progressiveButton: { label: 'Enable', progressive: true, events: { 'click': () => alert(5) } }, actionAnchor: { label: 'No thanks' } } ); drawer.$el.appendTo( document.body ); drawer.show()
2) Code to take care of the enabling - the click event above will need to make an API request to Special:Preferences to set
Something like:
```
/w/api.php?action=options&format=json&optionname=amc&optionvalue=1
```
(note you'll need a token and the correct optionname)