Guest User

Untitled

a guest
Jan 16th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. angular.module("MyControllers", [])
  2. .controller("VR", function ($window) {
  3. var onVrViewLoad = function() {
  4. var vrView = new VRView.Player('#vrview', {
  5. img: 'img/virtualTour.jpg',
  6. is_stereo: false
  7. });
  8. }
  9. $window.addEventListener('load', onVrViewLoad)
  10.  
  11.  
  12. })
Add Comment
Please, Sign In to add comment