diff options
author | IgnatzHome <ignatz@maschath.de> | 2018-06-14 20:11:29 +0200 |
---|---|---|
committer | IgnatzHome <ignatz@maschath.de> | 2018-06-14 20:11:29 +0200 |
commit | 04925f7347b7bb1f4384a96e1d56cd2cf3c351e9 (patch) | |
tree | 1088f9f676b6b4c163c1458ec937059c6ef3b0bd /client | |
parent | a433f7d9fe310e1aa5f5c831b2bfacb5b86c941e (diff) | |
download | wekan-04925f7347b7bb1f4384a96e1d56cd2cf3c351e9.tar.gz wekan-04925f7347b7bb1f4384a96e1d56cd2cf3c351e9.tar.bz2 wekan-04925f7347b7bb1f4384a96e1d56cd2cf3c351e9.zip |
trying to understand hirachy
Diffstat (limited to 'client')
-rw-r--r-- | client/components/cards/cardDetails.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/components/cards/cardDetails.js b/client/components/cards/cardDetails.js index 1a8a8bef..a7b18fc3 100644 --- a/client/components/cards/cardDetails.js +++ b/client/components/cards/cardDetails.js @@ -21,6 +21,10 @@ BlazeComponent.extendComponent({ onCreated() { this.isLoaded = new ReactiveVar(false); + console.log(this.parentComponent()); + console.log(this.parentComponent().parentComponent()); + console.log(JSON.stringify(this.parentComponent())); + console.log(JSON.stringify(this.parentComponent().parentComponent())); let parentComponent = this.parentComponent().parentComponent(); if (parentComponent === null) parentComponent = this.parentComponent(); parentComponent.showOverlay.set(true); |