Members
(static) idCounter
Generate a unique integer id (unique within the entire client session). Useful for temporary DOM ids.
Methods
(static) initialized(el, name)
Flag a element as component has initialized
Parameters:
Name | Type | Description |
---|---|---|
el | jQuery | jQuery element to initialized |
name | string | the name of the component |
(static) isInitialized(el, name)
Check if a component is initialized
Parameters:
Name | Type | Description |
---|---|---|
el | jQuery | jQuery element to check |
name | string | the name of the component |
(static) jQueryPlugin(component)
Binds a component to jQuery as plugin. All methods exposed from the component is available as $(el).component('method');
Parameters:
Name | Type | Description |
---|---|---|
component | object | A module following the revealing module pattern |