2014-10-20 19:43:03 +00:00
|
|
|
/*!
|
|
|
|
* VisualEditor UserInterface MediaWiki MobileSurface class.
|
|
|
|
*
|
2015-01-08 23:54:03 +00:00
|
|
|
* @copyright 2011-2015 VisualEditor Team and others; see http://ve.mit-license.org
|
2014-10-20 19:43:03 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @class
|
|
|
|
* @extends ve.ui.MobileSurface
|
|
|
|
*
|
|
|
|
* @constructor
|
|
|
|
* @param {HTMLDocument|Array|ve.dm.LinearData|ve.dm.Document} dataOrDoc Document data to edit
|
|
|
|
* @param {Object} [config] Configuration options
|
|
|
|
*/
|
|
|
|
ve.ui.MWMobileSurface = function VeUiMWMobileSurface() {
|
|
|
|
// Parent constructor
|
|
|
|
ve.ui.MWMobileSurface.super.apply( this, arguments );
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Inheritance */
|
|
|
|
|
|
|
|
OO.inheritClass( ve.ui.MWMobileSurface, ve.ui.MobileSurface );
|
|
|
|
|
|
|
|
/* Methods */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritdoc
|
|
|
|
*/
|
|
|
|
ve.ui.MWMobileSurface.prototype.createContext = function () {
|
|
|
|
return new ve.ui.MWMobileContext( this, { $: this.$ } );
|
|
|
|
};
|