This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Callbacks | |
// --------- | |
// A simple way of managing a collection of callbacks | |
// and executing them at a later point in time, using jQuery's | |
// `Callbacks` object. | |
Marionette.Callbacks = function(){ | |
this.callbacks = $.Callbacks("once memory"); | |
}; |