add parent-ancestorcount-dom macro

This commit is contained in:
pmario 2024-04-25 15:18:54 +02:00
parent 1a5c05d2a9
commit 1a4c114ecb
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
/*\
title: $:/core/modules/macros/parent-ancestorcount-dom.js
type: application/javascript
module-type: macro
Macro to return the parent widget this.ancestors variable
\*/
/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";
/*
Information about this macro
*/
exports.name = "parent-ancestorcount-dom";
exports.params = [];
/*
Run the macro
*/
exports.run = function() {
return (this.parentWidget) ? this.parentWidget.getAncestorCountDom() + "" : "";
};