mirror of
https://github.com/e107inc/e107.git
synced 2025-08-06 06:38:00 +02:00
Plugin and Theme manager fixes. Start on e-alert (requires more work)
This commit is contained in:
@@ -301,6 +301,21 @@ $(document).ready(function()
|
||||
// $(".e-spinner").spinner(); //FIXME breaks tooltips etc.
|
||||
|
||||
|
||||
$(".e-alert").live("click", function(){
|
||||
|
||||
var message = $(this).html();
|
||||
alert(message);
|
||||
$("#uiAlert").val(message);
|
||||
$("#uiAlert").alert();
|
||||
$("#uiAlert").fadeIn('slow');
|
||||
window.setTimeout(function() { $("#uiAlert").alert('close'); }, 4000);
|
||||
|
||||
});
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
$(".e-radio-multi").each(function() {
|
||||
// $(this).nextAll(".field-help").hide();
|
||||
// $(this).nextAll(":input").tipsy({title: 'hello'});
|
||||
|
Reference in New Issue
Block a user