/*! jQuery Waiting - v0.1.1 - 2013-06-08 * https://github.com/Novascreen/jquery.waiting * Copyright (c) 2013 Thomas Hermann; Licensed MIT */ (function ($, window, document, undefined) { 'use strict'; var waiting = 'waiting', defaults = { waitingClass: waiting, position: "center", overlay: true, fixed: false }; function Plugin(element, options) { this.element = element; this.$el = $(element); this.options = $.extend({}, defaults, options); this._defaults = defaults; this._name = waiting; this._addPositionRelative = false; this.init(); } Plugin.prototype = { init: function () { this.$container = $('