mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-24 22:35:41 +00:00
Change {Boolean} to {boolean} throughout
Change-Id: Ibbbaed3762efa6a6928ba6e4611b1f1fef91ad8f
This commit is contained in:
parent
82114467f1
commit
a095c0ab06
|
@ -145,7 +145,7 @@ ve.dm.Node.static.toDomElement = function ( /*dataElement*/ ) {
|
||||||
* Linear model elements with this type will be moved out of the linear model into the metadata.
|
* Linear model elements with this type will be moved out of the linear model into the metadata.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @property {Boolean} static.isMeta
|
* @property {boolean} static.isMeta
|
||||||
* @inheritable
|
* @inheritable
|
||||||
*/
|
*/
|
||||||
ve.dm.Node.static.isMeta = false;
|
ve.dm.Node.static.isMeta = false;
|
||||||
|
@ -155,7 +155,7 @@ ve.dm.Node.static.isMeta = false;
|
||||||
* only special node types are not wrapped.
|
* only special node types are not wrapped.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @property {Boolean} static.isWrapped
|
* @property {boolean} static.isWrapped
|
||||||
* @inheritable
|
* @inheritable
|
||||||
*/
|
*/
|
||||||
ve.dm.Node.static.isWrapped = true;
|
ve.dm.Node.static.isWrapped = true;
|
||||||
|
@ -166,7 +166,7 @@ ve.dm.Node.static.isWrapped = true;
|
||||||
* also known as inline nodes.
|
* also known as inline nodes.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @property {Boolean} static.isContent
|
* @property {boolean} static.isContent
|
||||||
* @inheritable
|
* @inheritable
|
||||||
*/
|
*/
|
||||||
ve.dm.Node.static.isContent = false;
|
ve.dm.Node.static.isContent = false;
|
||||||
|
@ -176,7 +176,7 @@ ve.dm.Node.static.isContent = false;
|
||||||
* content nodes.
|
* content nodes.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @property {Boolean} static.canContainContent
|
* @property {boolean} static.canContainContent
|
||||||
* @inheritable
|
* @inheritable
|
||||||
*/
|
*/
|
||||||
ve.dm.Node.static.canContainContent = false;
|
ve.dm.Node.static.canContainContent = false;
|
||||||
|
@ -189,7 +189,7 @@ ve.dm.Node.static.canContainContent = false;
|
||||||
* stripping and preservation.
|
* stripping and preservation.
|
||||||
*
|
*
|
||||||
* @static
|
* @static
|
||||||
* @property {Boolean} static.hasSignificantWhitespace
|
* @property {boolean} static.hasSignificantWhitespace
|
||||||
* @inheritable
|
* @inheritable
|
||||||
*/
|
*/
|
||||||
ve.dm.Node.static.hasSignificantWhitespace = false;
|
ve.dm.Node.static.hasSignificantWhitespace = false;
|
||||||
|
|
Loading…
Reference in a new issue