You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
702 B
702 B
mobile
This option allows you specify an alternative configuration for mobile devices. This setting allows for overriding settings specifically for mobile devices. For information on customizing {{site.productname}} for mobile devices, see: [{{site.productname}} mobile]({{ site.baseurl }}/mobile/).
Type: Object
Example of mobile specific configuration
This example shows how to setup a mobile section to override some of the desktop settings with mobile specific settings.
tinymce.init({
selector: 'textarea',
plugins: [ 'code', 'lists' ]
mobile: {
plugins: [ 'autosave', 'lists', 'autolink' ],
toolbar: [ 'undo', 'bold', 'italic', 'styleselect' ]
}
});