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 6fa850f commit 084526cCopy full SHA for 084526c
src/core/scene/a-scene.js
@@ -500,15 +500,6 @@ class AScene extends AEntity {
500
return AEntity.prototype.getAttribute.call(this, attr);
501
}
502
503
- /**
504
- * `getAttribute` used to be `getDOMAttribute` and `getComputedAttribute` used to be
505
- * what `getAttribute` is now. Now legacy code.
506
- */
507
- getComputedAttribut (attr) {
508
- warn('`getComputedAttribute` is deprecated. Use `getAttribute` instead.');
509
- this.getAttribute(attr);
510
- }
511
-
512
/**
513
* Wraps Entity.getDOMAttribute to take into account for systems.
514
* If system exists, then return system data rather than possible component data.
0 commit comments