marionette-rails 0.9.5.1 → 0.9.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
|
|
1
|
-
// Backbone.Marionette v0.9.
|
1
|
+
// Backbone.Marionette v0.9.6
|
2
2
|
//
|
3
3
|
// Copyright (C)2012 Derick Bailey, Muted Solutions, LLC
|
4
4
|
// Distributed Under MIT License
|
@@ -71,11 +71,11 @@ Marionette.EventBinder.extend = Backbone.View.extend;
|
|
71
71
|
// The core view type that other Marionette views extend from.
|
72
72
|
Marionette.View = Backbone.View.extend({
|
73
73
|
constructor: function(){
|
74
|
-
Backbone.View.prototype.constructor.apply(this, arguments);
|
75
|
-
|
76
74
|
var eventBinder = new Marionette.EventBinder();
|
77
75
|
_.extend(this, eventBinder);
|
78
76
|
|
77
|
+
Backbone.View.prototype.constructor.apply(this, arguments);
|
78
|
+
|
79
79
|
this.bindTo(this, "show", this.onShowCalled, this);
|
80
80
|
},
|
81
81
|
|