//# ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------- // //# ALERT (function($) { $.alert = function(config) { //: var defaults = { type : 'alert', title : '', text : '', okText : 'Ok', confirmText : 'Confirm', cancelText : 'Cancel', width : null, overlay : true, overlayClose : false, escClose : true, callback : function() {} }; //: var options = $.extend({}, defaults, config); var imagespath = $('meta[name="images-path"]').attr('content'); //: var $overlay = $('
', { 'class': 'alertOverlay' }); var $container = $('
', { 'class': 'alertContainer' }); var $header = $('
', { 'class': 'Header' }); var $title = $('
', { 'class': 'Title', html: options.title }); var $close = $('
', { 'class': 'Close', html: '×' }); var $content = $('
', { 'class': 'Content' }); var $article = $('
', { 'class': 'Article', html: options.text }); var $actions = $('
', { 'class': 'Actions' }); var $submit = $('