I am creating a sample modular base application. I load different views using a router. In one of my views, I have a button that has a click event function. The problem is that when I click this button, the click event function is called twice.
Any help would be appreciated !!!!!
below is my code
events: { 'click #hitMe': 'DisplayStudentColl' }, DisplayStudentColl: function(e) { var data = { }; }
source share