Report abuse

1
2
3
4
5
6
7
8
9
10
Ajax.InPlaceEditor.addMethods({
  createForm: function($super){
    console.log($super); // $super is not defined
    $super(); // exception, $super is not defined
  },
  enterEditMode: function($super, e){
    console.log($super); // $super appears to be the event object in this case
    $super(e); // exception, $super is not a function
  }
});