| Issue 1389: | A new API method on the event manager to remove all event sources | |
| 1 person starred this issue and may be notified of changes. | Back to list |
You already have one that removes single ones, I needed one to delete them all:
On EventManager
t.removeAllEventSources = removeAllEventSources;
...
...
}
function removeAllEventSources(){
$(sources).each(function(i, source){
removeEventSource(source);
});
}
function removeEventSource(source) {
...
Thank you
|
|
| ► Sign in to add a comment |
Mergedinto: 678