Pre-release
AdventureJS Docs Downloads
Score: 0 Moves: 0
// unsetDOV.js
(function () {
  /* global AdventureJS A */
  var p = AdventureJS.Assets.Asset.prototype;

  /**
   * <strong>unsetDOV</strong> is a passthrough to
   * <code><a href="#method_unsetVerbSubscription">unsetVerbSubscription</a></code>.
   * @memberOf AdventureJS.Assets.Asset
   * @method AdventureJS.Assets.Asset#unsetDOV
   * @param {String} verb
   */
  p.unsetDOV = function Asset_unsetDOV(verb) {
    this.unsetVerbSubscription("dov", verb);
  };
})();