mediawiki-extensions-Visual.../modules/ve/ce/annotations/ve.ce.LanguageAnnotation.js
Trevor Parscal db9f941fa6 Rename this.$ to this.$element, and this.$$ to this.$
Objectives:
* Rename this.$ to this.$element
* Rename this.$$ to this.$
* Get rid of the need to use this.frame.$$
* Rename OO.ui.Element.get$$ to OO.ui.Element.getJQuery

Changes: (using Sublime Text regex patterns)
* Replace "get$$" with "getJQuery"
* Replace "\.(\$)([^\$a-zA-Z])" with ".$element$2"
* Replace "\.(\$\$)" with ".$"
* Replace "'$$'" with "'$'"
* Set this.$ to null in constructor of OO.ui.Window
* Set this.$ to this.frame.$ in initialize method of OO.ui.Window
* Replace "\.(frame.\$)([^\$a-zA-Z])" with ".\$$2"

Bonus:
* Use this.$() in a bunch of places where $() was erroneously used

Change-Id: If3d870124ab8d10f8223532cda95c2b2b075db94
2013-11-03 23:03:49 -08:00

48 lines
1.4 KiB
JavaScript

/*!
* VisualEditor ContentEditable LanguageAnnotation class.
*
* @copyright 2011-2013 VisualEditor Team and others; see AUTHORS.txt
* @license The MIT License (MIT); see LICENSE.txt
*/
/**
* ContentEditable language annotation.
*
* @class
* @extends ve.ce.Annotation
* @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( model, parentNode, config ) {
// Parent constructor
ve.ce.Annotation.call( this, model, parentNode, config );
// DOM changes
this.$element.addClass( 've-ce-LanguageAnnotation' );
this.$element.attr( 'lang', model.getAttribute( 'lang' ) );
this.$element.attr( 'dir', model.getAttribute( 'dir' ) );
// TODO:
// When ULS is active, use $.uls.getAutonym(lang) to get the full
// language name in the tooltip
// (eg 'he' will be 'Hebrew' and 'en' will be 'English')
this.$element.attr( 'title', ve.msg( 'visualeditor-languageinspector-block-tooltip', model.getAttribute( 'lang' ) ) );
};
/* Inheritance */
OO.inheritClass( ve.ce.LanguageAnnotation, ve.ce.Annotation );
/* Static Properties */
ve.ce.LanguageAnnotation.static.name = 'meta/language';
ve.ce.LanguageAnnotation.static.tagName = 'span';
/* Registration */
ve.ce.annotationFactory.register( ve.ce.LanguageAnnotation );