Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions content/learning-materials/lateral-thinking-gone-vr/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@ The application is available for download via the Meta App Lab: <https://www.met
Code and technical details are available at <https://github.com/cns-iu/issi-vr-workshop-2023/blob/main/README.md>.

A video demo is available on [YouTube](https://youtu.be/x_RaPMxPbyM?si=W59abyNk6G6Cs7Lh).

<iframe width="560" height="315" src="https://www.youtube.com/embed/x_RaPMxPbyM?si=e1AKi46hTbJWvxep" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { NgModule } from '@angular/core';
import { NgModule, SecurityContext } from '@angular/core';
import { CommonModule } from '@angular/common';

import { LearningMaterialRoutingModule } from './learning-material-routing.module';
Expand All @@ -8,16 +8,15 @@ import { MarkdownModule } from 'ngx-markdown';
import { DrawerHeaderModule } from '../../shared/components/drawer-header/drawer-header.module';
import { DrawerModule } from '../../shared/components/drawer/drawer.module';


@NgModule({
declarations: [LearningMaterialComponent],
imports: [
CommonModule,
LearningMaterialRoutingModule,
MatIconModule,
MarkdownModule,
MarkdownModule.forRoot({ sanitize: SecurityContext.NONE }),
DrawerHeaderModule,
DrawerModule
]
DrawerModule,
],
})
export class LearningMaterialModule { }
export class LearningMaterialModule {}
Loading