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:
@@ -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')
|
||||
|
Reference in New Issue
Block a user