1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-13 01:54:12 +02:00

Corrected Admin->Mail 'Send now' functionality - replacing old prototype.js code.

This commit is contained in:
Cameron
2014-10-12 02:37:43 -07:00
parent 4fca7b7f12
commit 5e867b378e
7 changed files with 199 additions and 116 deletions

View File

@@ -205,12 +205,12 @@ $(document).ready(function()
$('.e-progress').on('click', function(e)
{
// alert('Process Started');
var target = 'progress';
var target = $(this).attr('data-progress-target');
var script = $(this).attr('data-progress');
var show = $(this).attr('data-progress-show');
var hide = $(this).attr('data-progress-hide');
@@ -235,8 +235,8 @@ $(document).ready(function()
if(data > 99.999) {
clearInterval(progresspump);
$("#progressouter").removeClass("active");
$("#"+target).closest('.progress').removeClass("active");
$("#"+target).html("Done");
if(hide !== 'undefined')