Namespaces
- See:
-
prefix
Type: String- optional
Defines an optional scope (i.e., namespace) for the identifiers.
-
promises
Type: Storm.Promise- repeatable
.Extend(constructor, extension)
Prototypical class extension
.uniqId(prefix)
Returns: Id
Generates an ID number that is unique within the context of the current Storm instance. The internal counter does not persist between page loads.
.when(promises)
Returns: Storm.Promise
When to go with Promise. Used by calling Storm.when()
and passing
promises to listen to. Storm.when can be chained with multiple calls
e.g. Storm.when(p1, p2, p3).then(func).then(func).done(func).always(func);