marionette-rails 0.9.5.1 → 0.9.6.1
Sign up to get free protection for your applications and to get access to all the features.
@@ -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
|
|