﻿/// <reference path="jquery-vsdoc.js" />

DdmSys.Common = {
	Version: '1.0.00',
	Copyright: 'Copyright (c)Dynamic Digital Media Group',
	Author: 'Glenn Byron',
	addProgressText: function(progressText) {
		var progressList = $('.updateProgress');
		progressList.each(function(i, el) {
			if ($(el).is('.progressText')) {
				$(el).html(progressText);
			} else {
				$(el).append('<span class="progressText">' + progressText + '</span>');
			}
			return true;
		});
	}
}

