orgsync-savvy
v0.2.4
Published
The save button your save button could be like.
Readme
Savvy
The save button your save button could be like.
Install
Savvy's two dependencies are jQuery and Underscore, so include them before Savvy.
<script src='savvy.js'></script>...or use bower...
bower install savvy...and get the JavaScript file from components/savvy/savvy.js.
API
Savvy([el [, dfd [, options]]])
- el - a jQuery object, DOM node, jQuery selector or raw HTML.
- dfd - a Deferred object, like one returned by
$.ajax. - options - An optional object with any or all of the following...
- pendingContent
''- The content the element should display while the deferred object is in apendingstate. - doneContent
''- The content the element should display while the deferred object is in adonestate. - failContent
''- The content the element should display while the deferred object is in afailstate. - duration
-1- The time (ms) to wait before returning the element's original content after adoneorfail.-1keeps the element in thedoneorfailstate untilreset()is called.
- pendingContent
setElement(el)
Set the $el property. This allows the creation of "empty" savvy instances to
be populated later.
setDfd(dfd)
Update the deferred object for a savvy instance.
reset()
Return the element to its original state. This will only need to be called
manually when duration is -1.
