/*
 * jQuery or() plugin - the only plugin which has more license text than code
 *
 * Copyright (c) 2009 Stephan Seidt
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 */

$.fn.extend({
  or: function (fallback) {
    return this.length ? this : fallback;
  }
});
