1
0
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:
Cameron
2013-05-03 21:34:59 -07:00
parent 2db0b73da2
commit 086e8c3afc
5 changed files with 160 additions and 36 deletions

View File

@@ -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'});