// clear-after-body.js
// Adds an echo-clear after the echo-item-body in case anything in the body is floated

(function($) {

    var plugin = Echo.createPlugin({
        "name": "ClearAfterBody",
        "applications": ["Stream"],
        "init": function(plugin, application) {
            plugin.extendTemplate("Item", '<div class="echo-clear"></div>', 'insertAfter', 'echo-item-body', "ClearAfterBody");
        }
    });

})(jQuery);
