﻿// settings for the client side
// it's filled in the Main.master
jQuery.arkadium = {   
    removeSummary: function (ajaxContext) {
        var target = jQuery(ajaxContext.get_updateTarget()).find("#summary_info");

        if (target !== null) {
            target.remove();
        }
    }
};
