namespace ActiveSupport
Description
Provides a subset of methods from the Prototype.js framework, without modifying any built in prototypes to ensure compatibility and portability.
Namespaces
-
ActiveSupport.Array
-
ActiveSupport.Function
-
ActiveSupport.String
-
ActiveSupport.Number
-
ActiveSupport.Object
-
ActiveSupport.JSON
Provides JSON support, will use the browser's native implementation if it is available and complies with the JSON spec.
-
ActiveSupport.Element
ActiveSupport.Element is a simple DOM manipulation library that does not modify the built in Element object. All ActiveSupport.Element methods take an Element object (and not a string) as their first argument. ActiveSupport.Element is available inside ActiveView classes as the second argument:
Classes
-
ActiveSupport.CallbackQueue
Allows for the execution of callbacks in the order they are registered.
-
ActiveSupport.Initializer
Several asynchronous events occur in an ActiveJS application before your application is ready to use. The initializer ensures that ActiveRoutes and ActiveRecord are configured appropriately and that these events occur in the correct order. Specifically the initializer will:
-
ActiveSupport.Request
Supports an indentical API to Prototype's Ajax.Request/Response, but does not include handling / onException callbacks or Ajax.Responders.


