mediawiki-extensions-Visual.../modules/ve-mw/ui/ve.ui.MWDesktopWikitextSurface.js
Ed Sanders 31a3f2f0b6 Move editfont class down to surface view, so it doesn't break DebugBar
Change-Id: I779ab9d581af37ae104acf4ea6a83b86504bb257
2016-10-07 16:10:58 -04:00

50 lines
1.3 KiB
JavaScript

/*!
* VisualEditor UserInterface MWDesktopWikitextSurface class.
*
* @copyright 2011-2016 VisualEditor Team and others; see http://ve.mit-license.org
*/
/**
* A surface is a top-level object which contains both a surface model and a surface view.
* This is the mobile version of the surface.
*
* @class
* @extends ve.ui.DesktopSurface
*
* @constructor
* @param {HTMLDocument|Array|ve.dm.LinearData|ve.dm.Document} dataOrDoc Document data to edit
* @param {Object} [config] Configuration options
*/
ve.ui.MWDesktopWikitextSurface = function VeUiMWDesktopWikitextSurface() {
// Parent constructor
ve.ui.MWDesktopWikitextSurface.super.apply( this, arguments );
// Initialization
// The following classes can be used here:
// * mw-editfont-default
// * mw-editfont-monospace
// * mw-editfont-sans-serif
// * mw-editfont-serif
this.getView().$element.addClass( 've-ui-mwDesktopWikitextSurface mw-editfont-' + mw.user.options.get( 'editfont' ) );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWDesktopWikitextSurface, ve.ui.DesktopSurface );
/* Methods */
/**
* @inheritdoc
*/
ve.ui.MWDesktopWikitextSurface.prototype.createModel = function ( doc ) {
return new ve.dm.MWWikitextSurface( doc );
};
/**
* @inheritdoc
*/
ve.ui.MWDesktopWikitextSurface.prototype.createView = function ( model ) {
return new ve.ce.MWWikitextSurface( model, this );
};