Вход Регистрация
Файл: plugins/bower_components/sweetalert/jquery.sweet-alert.custom.js
Строк: 97
<?php
!function($) {
    
"use strict";

    var 
SweetAlert = function() {};

    
//examples 
    
SweetAlert.prototype.init = function() {
        
    
//Basic
    
$('#sa-basic').click(function(){
        
swal("Here's a message!");
    });

    
//A title with a text under
    
$('#sa-title').click(function(){
        
swal("Permission denied!""You can't submit this query, edit and delete permission are denied for demo admin.")
    });

    
//Success Message
    
$('#sa-success').click(function(){
        
swal("Good job!""Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed lorem erat eleifend ex semper, lobortis purus sed.""success")
    });

    
//Warning Message
    
$('#sa-warning').click(function(){
        
swal({   
            
title"Are you sure?",   
            
text"You will not be able to recover this imaginary file!",   
            
type"warning",   
            
showCancelButtontrue,   
            
confirmButtonColor"#DD6B55",   
            
confirmButtonText"Yes, delete it!",   
            
closeOnConfirmfalse 
        
}, function(){   
            
swal("Deleted!""Your imaginary file has been deleted.""success"); 
        });
    });

    
//Parameter
    
$('#sa-params').click(function(){
        
swal({   
            
title"Are you sure?",   
            
text"You will not be able to recover this imaginary file!",   
            
type"warning",   
            
showCancelButtontrue,   
            
confirmButtonColor"#DD6B55",   
            
confirmButtonText"Yes, delete it!",   
            
cancelButtonText"No, cancel plx!",   
            
closeOnConfirmfalse,   
            
closeOnCancelfalse 
        
}, function(isConfirm){   
            if (
isConfirm) {     
                
swal("Deleted!""Your imaginary file has been deleted.""success");   
            } else {     
                
swal("Cancelled""Your imaginary file is safe :)""error");   
            } 
        });
    });

    
//Custom Image
    
$('#sa-image').click(function(){
        
swal({   
            
title"Govinda!",   
            
text"Recently joined twitter",   
            
imageUrl"../plugins/images/users/govinda.jpg" 
        
});
    });

    
//Auto Close Timer
    
$('#sa-close').click(function(){
         
swal({   
            
title"Auto close alert!",   
            
text"I will close in 2 seconds.",   
            
timer2000,   
            
showConfirmButtonfalse 
        
});
    });


    },
    
//init
    
$.SweetAlert = new SweetAlert, $.SweetAlert.Constructor SweetAlert
}(window.jQuery),

//initializing 
function($) {
    
"use strict";
    $.
SweetAlert.init()
}(
window.jQuery);
?>
Онлайн: 1
Реклама