From 6f01a8756fe38c0d6565c369005142adda4b9b57 Mon Sep 17 00:00:00 2001 From: “shentao” Date: Thu, 26 Jan 2017 16:19:00 +0800 Subject: rebuild GUI structure(only changed modules' name) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue-id : CLIENT-14 Change-Id: Ie4fa30f1a51393576fbdc68e12d810565cbf06eb Signed-off-by: “shentao” --- .../bootstrap-modal/js/bootstrap-modalmanager.js | 423 --------------------- 1 file changed, 423 deletions(-) delete mode 100644 portal-common/src/main/webapp/common/thirdparty/bootstrap-modal/js/bootstrap-modalmanager.js (limited to 'portal-common/src/main/webapp/common/thirdparty/bootstrap-modal/js/bootstrap-modalmanager.js') diff --git a/portal-common/src/main/webapp/common/thirdparty/bootstrap-modal/js/bootstrap-modalmanager.js b/portal-common/src/main/webapp/common/thirdparty/bootstrap-modal/js/bootstrap-modalmanager.js deleted file mode 100644 index ba6f7eb2..00000000 --- a/portal-common/src/main/webapp/common/thirdparty/bootstrap-modal/js/bootstrap-modalmanager.js +++ /dev/null @@ -1,423 +0,0 @@ -/* =========================================================== - * bootstrap-modalmanager.js v2.2.5 - * =========================================================== - * Copyright 2012 Jordan Schroter. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ========================================================== */ - -!function ($) { - - "use strict"; // jshint ;_; - - /* MODAL MANAGER CLASS DEFINITION - * ====================== */ - - var ModalManager = function (element, options) { - this.init(element, options); - }; - - ModalManager.prototype = { - - constructor: ModalManager, - - init: function (element, options) { - this.$element = $(element); - this.options = $.extend({}, $.fn.modalmanager.defaults, this.$element.data(), typeof options == 'object' && options); - this.stack = []; - this.backdropCount = 0; - - if (this.options.resize) { - var resizeTimeout, - that = this; - - $(window).on('resize.modal', function(){ - resizeTimeout && clearTimeout(resizeTimeout); - resizeTimeout = setTimeout(function(){ - for (var i = 0; i < that.stack.length; i++){ - that.stack[i].isShown && that.stack[i].layout(); - } - }, 10); - }); - } - }, - - createModal: function (element, options) { - $(element).modal($.extend({ manager: this }, options)); - }, - - appendModal: function (modal) { - this.stack.push(modal); - - var that = this; - - modal.$element.on('show.modalmanager', targetIsSelf(function (e) { - - var showModal = function(){ - modal.isShown = true; - - var transition = $.support.transition && modal.$element.hasClass('fade'); - - that.$element - .toggleClass('modal-open', that.hasOpenModal()) - .toggleClass('page-overflow', $(window).height() < that.$element.height()); - - modal.$parent = modal.$element.parent(); - - modal.$container = that.createContainer(modal); - - modal.$element.appendTo(modal.$container); - - that.backdrop(modal, function () { - modal.$element.show(); - - if (transition) { - //modal.$element[0].style.display = 'run-in'; - modal.$element[0].offsetWidth; - //modal.$element.one($.support.transition.end, function () { modal.$element[0].style.display = 'block' }); - } - - modal.layout(); - - modal.$element - .addClass('in') - .attr('aria-hidden', false); - - var complete = function () { - that.setFocus(); - modal.$element.trigger('shown'); - }; - - transition ? - modal.$element.one($.support.transition.end, complete) : - complete(); - }); - }; - - modal.options.replace ? - that.replace(showModal) : - showModal(); - })); - - modal.$element.on('hidden.modalmanager', targetIsSelf(function (e) { - that.backdrop(modal); - // handle the case when a modal may have been removed from the dom before this callback executes - if (!modal.$element.parent().length) { - that.destroyModal(modal); - } else if (modal.$backdrop){ - var transition = $.support.transition && modal.$element.hasClass('fade'); - - // trigger a relayout due to firebox's buggy transition end event - if (transition) { modal.$element[0].offsetWidth; } - $.support.transition && modal.$element.hasClass('fade') ? - modal.$backdrop.one($.support.transition.end, function () { modal.destroy(); }) : - modal.destroy(); - } else { - modal.destroy(); - } - - })); - - modal.$element.on('destroyed.modalmanager', targetIsSelf(function (e) { - that.destroyModal(modal); - })); - }, - - getOpenModals: function () { - var openModals = []; - for (var i = 0; i < this.stack.length; i++){ - if (this.stack[i].isShown) openModals.push(this.stack[i]); - } - - return openModals; - }, - - hasOpenModal: function () { - return this.getOpenModals().length > 0; - }, - - setFocus: function () { - var topModal; - - for (var i = 0; i < this.stack.length; i++){ - if (this.stack[i].isShown) topModal = this.stack[i]; - } - - if (!topModal) return; - - topModal.focus(); - }, - - destroyModal: function (modal) { - modal.$element.off('.modalmanager'); - if (modal.$backdrop) this.removeBackdrop(modal); - this.stack.splice(this.getIndexOfModal(modal), 1); - - var hasOpenModal = this.hasOpenModal(); - - this.$element.toggleClass('modal-open', hasOpenModal); - - if (!hasOpenModal){ - this.$element.removeClass('page-overflow'); - } - - this.removeContainer(modal); - - this.setFocus(); - }, - - getModalAt: function (index) { - return this.stack[index]; - }, - - getIndexOfModal: function (modal) { - for (var i = 0; i < this.stack.length; i++){ - if (modal === this.stack[i]) return i; - } - }, - - replace: function (callback) { - var topModal; - - for (var i = 0; i < this.stack.length; i++){ - if (this.stack[i].isShown) topModal = this.stack[i]; - } - - if (topModal) { - this.$backdropHandle = topModal.$backdrop; - topModal.$backdrop = null; - - callback && topModal.$element.one('hidden', - targetIsSelf( $.proxy(callback, this) )); - - topModal.hide(); - } else if (callback) { - callback(); - } - }, - - removeBackdrop: function (modal) { - modal.$backdrop.remove(); - modal.$backdrop = null; - }, - - createBackdrop: function (animate, tmpl) { - var $backdrop; - - if (!this.$backdropHandle) { - $backdrop = $(tmpl) - .addClass(animate) - .appendTo(this.$element); - } else { - $backdrop = this.$backdropHandle; - $backdrop.off('.modalmanager'); - this.$backdropHandle = null; - this.isLoading && this.removeSpinner(); - } - - return $backdrop; - }, - - removeContainer: function (modal) { - modal.$container.remove(); - modal.$container = null; - }, - - createContainer: function (modal) { - var $container; - - $container = $('