Commit affa5a752b179efcff0cafabfbab0d42f012f2cf

  • avatar
  • arvind
  • Fri Oct 04 11:32:19 IST 2013
Fix:
    - MapView uses the updated convention of invoking _.bindAll
  
112112
113113 var MapView = Backbone.View.extend({
114114 initialize: function(){
115 _.bindAll(this);
115 _.bindAll.apply(_, [this].concat(_.functions(this)));
116 //_.bindAll(this);
116117 _.bind(this.render, this);
117118 },
118119 render: function(el){