mediawiki-extensions-Visual.../modules/ve-mw/ui/ve.ui.MWMobileContext.js
Trevor Parscal 34da7d56b8 Update VE core submodule to master (2e1a0bb)
New changes:
04a5947 Localisation updates from https://translatewiki.net.
dd4691b Update OOjs to v1.1.5
2e1a0bb Context refactor

Local changes:
Add context item support for references, citations, templates and links

Change-Id: I5d488ecbf9768dc63de6e545505dbfd5eb84cc61
2015-02-27 18:21:13 -05:00

57 lines
1.4 KiB
JavaScript

/*!
* VisualEditor UserInterface MobileContext class.
*
* @copyright 2011-2015 VisualEditor Team and others; see http://ve.mit-license.org
*/
/**
* UserInterface context that displays inspector full screen.
*
* @class
* @extends ve.ui.MobileContext
*
* @constructor
* @param {ve.ui.Surface} surface
* @param {Object} [config] Configuration options
*/
ve.ui.MWMobileContext = function VeUiMWMobileContext() {
// Parent constructor
ve.ui.MWMobileContext.super.apply( this, arguments );
// Initialization
this.$element.addClass( 've-ui-mwMobileContext' );
};
/* Inheritance */
OO.inheritClass( ve.ui.MWMobileContext, ve.ui.MobileContext );
/* Methods */
/**
* @inheritdoc
*/
ve.ui.MWMobileContext.prototype.getRelatedSources = function () {
var sources;
if ( !this.relatedSources ) {
sources = ve.ui.MobileContext.super.prototype.getRelatedSources.call( this );
// Filter out sources not supported in mobile mode
// FIXME: This is a temporary hack. Ideally, we don't want to load any code
// that is not supported on a given platform. However, present implementation
// of citation dialog forces us to load sources that we don't want on mobile.
this.availableSources = sources.filter( function ( source ) {
return (
source.model instanceof ve.dm.LinkAnnotation ||
(
source.model instanceof ve.dm.MWReferenceNode &&
source.tool !== ve.ui.MWReferenceDialogTool
)
);
} );
}
return this.availableSources;
};