We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9cee1e1 commit 10ef6d6Copy full SHA for 10ef6d6
src/layout/Cube.mjs
@@ -285,14 +285,24 @@ class Cube extends Card {
285
super.applyRenderAttributes()
286
}
287
288
+ /**
289
+ * @returns {String}
290
+ */
291
+ getPlaneId() {
292
+ return this.id + '__plane'
293
+ }
294
+
295
296
+ *
297
298
nestVdom() {
299
let me = this,
300
{container} = me,
301
{vdom} = container,
302
{cn} = vdom;
303
304
vdom.cn = [
- {cls: ['neo-plane'], cn: [
305
+ {cls: ['neo-plane'], id: me.getPlaneId(), cn: [
306
{cls: ['neo-box'], cn}
307
]}
308
];
0 commit comments