Mango / slideout

A touch slideout navigation menu for your mobile web apps.
https://slideout.js.org
MIT License
7.94k stars 1.15k forks source link

How can i import to angular 5 component? #258

Open oalkandev opened 6 years ago

oalkandev commented 6 years ago

i can do install with npm and set script angular-cli.json but i dont know how to initialize in angular5 component .ts file? Would you like help me please?

bravik commented 6 years ago

Install typescript types for slideout: npm install --save @types/slideout then import it in your component: import * as Slideout from 'slideout';

 ngOnInit() {
        this.slideout = new Slideout({
            'panel': document.getElementById('panel'),
            'menu': document.getElementById('menu'),
            'padding': 256,
            'tolerance': 70
        });
    }