﻿/*jslint bitwise: true, browser: true, eqeqeq: true, nomen: true, undef: true, white: true */
/*
var BLACKBAUD = BLACKBAUD || {};
BLACKBAUD.netcommunity = BLACKBAUD.netcommunity || {};
*/

BLACKBAUD.netcommunity.api = BLACKBAUD.netcommunity.api || {};

BLACKBAUD.netcommunity.api.DonationConfirmation = {

    "add": function(func) {
        this.list[this.list.length] = func;
    },


    "list": [],
    "run": function(data) {
        for (var i = 0; i < this.list.length; i++) {
            this.list[i](data);
        }
    }


};




