mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CategoryTree
synced 2024-11-27 09:43:06 +00:00
Get mode from data-ct-options instead of data-ct-mode
The attribute data-ct-options already contains the mode and attribute data-ct-mode is just redundant. The attribute data-ct-mode is now not needed anymore and removed from the rendered HTML. Change-Id: If261f3cdab6c55243e80dc2ef3caa884538b02bc
This commit is contained in:
parent
747421aca3
commit
a62550b687
|
@ -92,7 +92,6 @@ class CategoryTree {
|
||||||
$attr['class'] = 'CategoryTreeTag';
|
$attr['class'] = 'CategoryTreeTag';
|
||||||
}
|
}
|
||||||
|
|
||||||
$attr['data-ct-mode'] = $this->optionManager->getOption( 'mode' );
|
|
||||||
$attr['data-ct-options'] = $this->optionManager->getOptionsAsJsStructure();
|
$attr['data-ct-options'] = $this->optionManager->getOptionsAsJsStructure();
|
||||||
|
|
||||||
if ( !$title->getArticleID() ) {
|
if ( !$title->getArticleID() ) {
|
||||||
|
|
|
@ -193,7 +193,6 @@ class CategoryTreePage extends SpecialPage {
|
||||||
$output->addHTML( Html::rawElement( 'div',
|
$output->addHTML( Html::rawElement( 'div',
|
||||||
[
|
[
|
||||||
'class' => 'CategoryTreeResult CategoryTreeTag',
|
'class' => 'CategoryTreeResult CategoryTreeTag',
|
||||||
'data-ct-mode' => $this->tree->optionManager->getOption( 'mode' ),
|
|
||||||
'data-ct-options' => $this->tree->optionManager->getOptionsAsJsStructure(),
|
'data-ct-options' => $this->tree->optionManager->getOptionsAsJsStructure(),
|
||||||
],
|
],
|
||||||
$this->tree->renderNode( $title, 1 )
|
$this->tree->renderNode( $title, 1 )
|
||||||
|
|
|
@ -143,9 +143,8 @@ function loadChildren( $link, $children ) {
|
||||||
// Element may not have a .CategoryTreeTag parent, fallback to defauls
|
// Element may not have a .CategoryTreeTag parent, fallback to defauls
|
||||||
// Probably a CategoryPage (@todo: based on what?)
|
// Probably a CategoryPage (@todo: based on what?)
|
||||||
const ctTitle = $link.attr( 'data-ct-title' );
|
const ctTitle = $link.attr( 'data-ct-title' );
|
||||||
const ctMode = $linkParentCTTag.data( 'ct-mode' );
|
|
||||||
const mode = typeof ctMode === 'number' ? ctMode : undefined;
|
|
||||||
const ctOptions = $linkParentCTTag.attr( 'data-ct-options' ) || config.defaultCtOptions;
|
const ctOptions = $linkParentCTTag.attr( 'data-ct-options' ) || config.defaultCtOptions;
|
||||||
|
const mode = JSON.parse( ctOptions ).mode;
|
||||||
|
|
||||||
// Mode and options have defaults or fallbacks, title does not.
|
// Mode and options have defaults or fallbacks, title does not.
|
||||||
// Don't make a request if there is no title.
|
// Don't make a request if there is no title.
|
||||||
|
|
Loading…
Reference in a new issue