luke-chang / js-spatial-navigation

A javascript-based implementation of Spatial Navigation.
Mozilla Public License 2.0
370 stars 117 forks source link

Using spatial-navigation in Angular 4 App #26

Closed devcer closed 6 years ago

devcer commented 6 years ago

Imported the js in my angular-cli.json using

"scripts": [
    "../path" 
 ];

added declare var SpacialNavigation:any; in typings.d.ts and imported in my app.component.ts as import * as SpacialNavigation from 'SpacialNavigation'; but the navigation doesn't work. any help?

devcer commented 6 years ago

It works for me now. No need to import SpacialNavigation and I should initialize after the content is loaded in ngAfterViewInit method!