From affa5a752b179efcff0cafabfbab0d42f012f2cf Mon Sep 17 00:00:00 2001 From: Arvind Date: Fri, 4 Oct 2013 11:32:19 +0530 Subject: [PATCH] Fix: - MapView uses the updated convention of invoking _.bindAll --- mouchak/static/js/views.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mouchak/static/js/views.js b/mouchak/static/js/views.js index bcc6128..5806c3b 100644 --- a/mouchak/static/js/views.js +++ b/mouchak/static/js/views.js @@ -112,7 +112,8 @@ var MapView = Backbone.View.extend({ initialize: function(){ - _.bindAll(this); + _.bindAll.apply(_, [this].concat(_.functions(this))); + //_.bindAll(this); _.bind(this.render, this); }, render: function(el){ -- 1.7.10.4