Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/extensions/VisualEditor/lib/ve/src/ce/annotations/ve.ce.LanguageAnnotation.js
Ðазад
/*! * VisualEditor ContentEditable LanguageAnnotation class. * * @copyright See AUTHORS.txt */ /** * ContentEditable language annotation. * * @class * @extends ve.ce.TextStyleAnnotation * @constructor * @param {ve.dm.LanguageAnnotation} model Model to observe * @param {ve.ce.ContentBranchNode} [parentNode] Node rendering this annotation * @param {Object} [config] Configuration options */ ve.ce.LanguageAnnotation = function VeCeLanguageAnnotation() { // Parent constructor ve.ce.LanguageAnnotation.super.apply( this, arguments ); // DOM changes this.$element .addClass( 've-ce-languageAnnotation' ) .addClass( 've-ce-bidi-isolate' ) .prop( { lang: this.model.getAttribute( 'lang' ) || undefined, dir: this.model.getAttribute( 'dir' ) || undefined, title: this.constructor.static.getDescription( this.model ) } ); }; /* Inheritance */ OO.inheritClass( ve.ce.LanguageAnnotation, ve.ce.TextStyleAnnotation ); /* Static Properties */ ve.ce.LanguageAnnotation.static.name = 'meta/language'; ve.ce.LanguageAnnotation.static.tagName = 'span'; /* Static Methods */ /** * @inheritdoc */ ve.ce.LanguageAnnotation.static.getDescription = function ( model ) { const lang = ( model.getAttribute( 'lang' ) || '' ).toLowerCase(), name = ve.init.platform.getLanguageName( lang ), dir = ( model.getAttribute( 'dir' ) || '' ).toUpperCase(); if ( !dir || dir === ve.init.platform.getLanguageDirection( lang ).toUpperCase() ) { return ve.msg( 'visualeditor-languageannotation-description', name ); } return ve.msg( 'visualeditor-languageannotation-description-with-dir', name, dir ); }; /* Registration */ ve.ce.annotationFactory.register( ve.ce.LanguageAnnotation );
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка