rishabhsrao/voxel-hologram-example

View on GitHub
app/scripts/main.js

Summary

Maintainability
A
0 mins
Test Coverage
require.config({
  paths: {
    // Libraries
    "jquery": "../../libraries/jquery/jquery",
    "voxel": "../../libraries/voxel/dist/scripts/voxel",
    "voxel-hologram": "../../libraries/voxel-hologram/dist/scripts/voxel-hologram"
    // /Libraries
  },

  shim: {
  }
});

require(["jquery", "voxel-hologram-example"],
function( $,        VoxelHologramExample) {
  var voxelHologramExample = VoxelHologramExample.create();

  console.log("App with jQuery v%s says, '%s'", $.fn.jquery, voxelHologramExample.greet());
});