Vertical slide menu in Angular

angularjs

Solution

You need to create a `directive` to do that. You can start with snap.js (Angular-Snap).

DEMO

<snap-drawer>
  I'm in a drawer!
</snap-drawer>

<snap-content>
  I'm your main content!
</snap-content>

Problem

Does anyone know how I could create a vertical sliding menu in Angular ? Like the new facebook sliding menu that comes from left side of the screen. There are couple of fiddles available but all are for jquery

Original source