Waypoint.prototype.trigger = function()

in book/master_middleman/source/javascripts/waypoints/waypoint.js [48:55]


  Waypoint.prototype.trigger = function(args) {
    if (!this.enabled) {
      return
    }
    if (this.callback) {
      this.callback.apply(this, args)
    }
  }