- core
- Context
- ElementAllocator
- ElementOutput
- Engine
- Entity
- EventEmitter
- EventHandler
- Group
- Modifier
- OptionsManager
- RenderNode
- Scene
- SpecParser
- Transform
- View
- ViewSequence
- events
- EventArbiter
- EventFilter
- EventMapper
- inputs
- Accumulator
- GenericSync
- MouseSync
- PinchSync
- RotateSync
- ScaleSync
- ScrollSync
- TouchSync
- TouchTracker
- TwoFingerSync
- math
- Matrix
- Quaternion
- Random
- Utilities
- Vector
- modifiers
- Draggable
- Fader
- ModifierChain
- StateModifier
- physics
- PhysicsEngine
- physics/bodies
- Body
- Circle
- Particle
- Rectangle
- physics/constraints
- Surface
- Collision
- Constraint
- Curve
- Distance
- Snap
- Wall
- Walls
- physics/forces
- Drag
- Force
- Repulsion
- RotationalDrag
- RotationalSpring
- Spring
- VectorField
- physics/integrators
- SymplecticEuler
- surfaces
- CanvasSurface
- ContainerSurface
- ImageSurface
- InputSurface
- TextareaSurface
- VideoSurface
- transitions
- CachedMap
- Easing
- MultipleTransition
- SnapTransition
- SpringTransition
- Transitionable
- TransitionableTransform
- TweenTransition
- WallTransition
- utilities
- KeyCodes
- Timer
- Utility
- views
- ContextualView
- Deck
- DrawerLayout
- EdgeSwapper
- FlexibleLayout
- Flipper
- GridLayout
- HeaderFooterLayout
- Lightbox
- RenderController
- ScrollContainer
- Scroller
- Scrollview
- SequentialLayout
- widgets
- NavigationBar
- TabBar
Utility
This namespace holds standalone functionality. Currently includes name mapping for transition curves, name mapping for origin pairs, and the after() function.
Overview
Methods
Direction
                  after
                  loadURL
                  createDocumentFragmentFromHTML
                Methods
Direction()
Table of direction array positions
after(count, callback)
Return wrapper around callback function. Once the wrapper is called N times, invoke the callback function. Arguments and scope preserved.
Parameters
count
                    Number
                    number of calls before callback function invoked
                    
                  callback
                    Function
                    wrapped callback function
                    
                  Returns
Function
                    wrapped callback with coundown feature
                  loadURL(url, callback)
Load a URL and return its contents in a callback
Parameters
url
                    String
                    URL of object
                    
                  callback
                    Function
                    callback to dispatch with content
                    
                  createDocumentFragmentFromHTML(html)
Create a document fragment from a string of HTML
Parameters
html
                    String
                    HTML to convert to DocumentFragment
                    
                  Returns
DocumentFragment
                    DocumentFragment representing input HTML