diff options
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); |