$famous

This service gives you access to the complete Famo.us library.

Usage

Use this service to access the registered Famo.us modules as an object.

angular.module('mySuperApp', ['famous.angular']).controller(
  function($scope, $famous) {

      // Access any registered module
      var EventHandler = $famous['famous/core/EventHandler'];
      $scope.eventHandler = new EventHandler();

  };
});