All pastes #2120891 Raw Edit

Untitled

public text v1 · immutable
#2120891 ·published 2012-02-22 22:07 UTC
rendered paste body
foo = function () { }
foo.prototype = {
  doAjax: function () {
    that = this;
    ajaxThing(function () {
      that.ajaxCallback();
    });
  },

  ajaxCallback: function () { /* blah */ }
}