You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A base class which other classes can extend from. Marionette.Object incorporates many backbone conventions and utilities like initialize and Backbone.Events. It is a user friendly class to base your classes on to get Backbone conventions on any generic class.
Add a el reference to the views el from within a behavior instance.
ItemViews can now have no template by setting template: false
Application objects can now configure their default message channel.
This will allow you to configure multiple applications to exist at the same time within an apps without their event bus colliding.
Application objects now have the getOption method.
Regions now have a hasView method to determine if there is a view within a given region.
Views no longer use toJSON directly on models. instead they call into the new overridable methods serializeModel and serializeCollection where are called via serializeData
Return chainable objects from more methods to be consistent