| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*=========================================================================================
- File Name: components-modal.js
- Description: Modals are streamlined, but flexible, dialog prompts with the minimum
- required functionality and smart defaults.
- ----------------------------------------------------------------------------------------
- Item Name: Robust - Responsive Admin Theme
- Version: 1.2
- Author: GeeksLabs
- Author URL: http://www.themeforest.net/user/geekslabs
- ==========================================================================================*/
- (function(window, document, $) {
- 'use strict';
- // onShow event
- $('#onshowbtn').on('click', function() {
- $('#onshow').on('show.bs.modal', function() {
- alert('onShow event fired.');
- });
- });
- // onShown event
- $('#onshownbtn').on('click', function() {
- $('#onshown').on('shown.bs.modal', function() {
- alert('onShown event fired.');
- });
- });
- // onHide event
- $('#onhidebtn').on('click', function() {
- $('#onhide').on('hide.bs.modal', function() {
- alert('onHide event fired.');
- });
- });
- // onHidden event
- $('#onhiddenbtn').on('click', function() {
- $('#onhidden').on('hidden.bs.modal', function() {
- alert('onHidden event fired.');
- });
- });
- })(window, document, jQuery);
|