// Converse.js (A browser based XMPP chat client) // http://conversejs.org // // Copyright (c) 2012-2016, Jan-Carel Brand // Licensed under the Mozilla Public License (MPLv2) // /*global define */ (function (root, factory) { define("converse-headline", [ "converse-core", "converse-api", // TODO: remove this dependency "converse-chat" ], factory); }(this, function (converse, converse_api) { "use strict"; var utils = converse_api.env.utils, _ = converse_api.env._, __ = utils.__.bind(converse); converse_api.plugins.add('headline', { initialize: function () { /* The initialize function gets called as soon as the plugin is * loaded by converse.js's plugin machinery. */ // TODO } }); }));