Skip to content

Commit

Permalink
Use longhand initialization of object (shorthand unsupported in ES5)
Browse files Browse the repository at this point in the history
  • Loading branch information
diarmidmackenzie committed Jul 21, 2023
1 parent 1098756 commit 6010d1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/scene/sortFunctions.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function aframeSortTransparentSpatial (a, b) {
}

module.exports = {
aframeSortOpaqueDefault,
aframeSortTransparentDefault,
aframeSortTransparentSpatial
aframeSortOpaqueDefault: aframeSortOpaqueDefault,
aframeSortTransparentDefault: aframeSortTransparentDefault,
aframeSortTransparentSpatial: aframeSortTransparentSpatial
};

0 comments on commit 6010d1e

Please sign in to comment.