EVOLUTION-MANAGER
Edit File: jquery.gravy.modalBox.81176bad93d6.js
/* * Copyright 2008-2010 Christian Hammond. * Copyright 2010-2013 Beanbag, Inc. * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to * deal in the Software without restriction, including without limitation the * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or * sell copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS * IN THE SOFTWARE. */ (function($) { $.widget("ui.modalBox", { options: { buttons: [$('<input type="button" />').val(gettext('Close'))], container: 'body', discardOnClose: true, fadeBackground: true, modalBoxButtonsClass: "modalbox-buttons", modalBoxContentsClass: "modalbox-contents", modalBoxTitleClass: "modalbox-title", stretchX: false, stretchY: false, title: null }, _init: function() { var self = this; if (this.options.fadeBackground) { this.bgbox = $("<div/>") .addClass("modalbox-bg") .appendTo(this.options.container) .css({ "background-color": "#000", opacity: 0 }) .move(0, 0, "fixed") .width("100%") .height("100%") .keydown(function(e) { e.stopPropagation(); }); } this.box = $("<div/>") .addClass("modalbox") .move(0, 0, "absolute") .keydown(function(e) { e.stopPropagation(); }); if (this.options.boxID) { this.box.attr('id', this.options.boxID); } this.inner = $("<div/>") .appendTo(this.box) .addClass("modalbox-inner") .css({ position: "relative", width: "100%", height: "100%" }); if (this.options.title) { this.titleBox = $("<h1/>") .appendTo(this.inner) .addClass(this.options.modalBoxTitleClass) .text(this.options.title); } this.element .appendTo(this.inner) .addClass(this.options.modalBoxContentsClass) .bind("DOMSubtreeModified", function() { self.resize(); }); this._buttons = $("<div/>") .appendTo(this.inner) .addClass(this.options.modalBoxButtonsClass) .click(function(e) { /* Check here so that buttons can call stopPropagation(). */ if (e.target.tagName === "INPUT" && !e.target.disabled) { self.element.modalBox("destroy"); } }); this.box.appendTo(this.options.container); $.each(this.options.buttons, function() { $(this).appendTo(self._buttons); }); if (this.options.fadeBackground) { this.bgbox.fadeTo(350, 0.85); } $(window).bind("resize.modalbox", function() { self.resize(); }); this.resize(); }, destroy: function() { var self = this; if (!this.element.data("modalBox")) { return; } this.element .removeData("modalBox") .unbind("resize.modalbox") .css("position", "static"); if (this.options.fadeBackground) { this.bgbox.fadeOut(350, function() { self.bgbox.remove(); }); } if (!this.options.discardOnClose) { this.element.appendTo(this.options.container); } this.box.remove(); }, buttons: function() { return this._buttons; }, resize: function() { var marginHoriz = $("body").getExtents("m", "lr"), marginVert = $("body").getExtents("m", "tb"), winWidth = $(window).width() - marginHoriz, winHeight = $(window).height() - marginVert; if (this.options.stretchX) { this.box.width(winWidth - this.box.getExtents("bmp", "lr") - marginHoriz); } if (this.options.stretchY) { this.box.height(winHeight - this.box.getExtents("bmp", "tb") - marginVert); this.element.height(this._buttons.position().top - this.element.position().top - this.element.getExtents("m", "tb")); } else { this.box.height(this.element.position().top + this.element.outerHeight(true) + this._buttons.outerHeight(true)); } this.box.move(Math.ceil((winWidth - this.box.outerWidth(true)) / 2), Math.ceil((winHeight - this.box.outerHeight(true)) / 2), "fixed"); this.element.triggerHandler("resize"); } }); $.ui.modalBox.getter = "buttons"; })(jQuery); // vim: set et: